Kelvin-Helmholtz instability in SPH#

This simple example shows how to setup a Kelvin-Helmholtz instability in SPH

Warning

This test is shown at low resolution to avoid smashing our testing time, the instability starts to appear for resol > 64 with M6 kernel

14 import shamrock
15
16 # If we use the shamrock executable to run this script instead of the python interpreter,
17 # we should not initialize the system as the shamrock executable needs to handle specific MPI logic
18 if not shamrock.sys.is_initialized():
19     shamrock.change_loglevel(1)
20     shamrock.sys.init("0:0")
-> modified loglevel to 0 enabled log types :
log status :
 - Loglevel: 1, enabled log types :
[xxx] Info: xxx ( logger::info )
[xxx] : xxx ( logger::normal )
[xxx] Warning: xxx ( logger::warn )
[xxx] Error: xxx ( logger::err )

Use shamrock documentation style for matplotlib

25 shamrock.matplotlib.set_shamrock_mpl_style()

Setup parameters

29 import numpy as np
30
31 kernel = "M6"  # SPH kernel to use
32 resol = 32  # number of particles in the x & y direction
33 thick = 6  # number of particles in the z direction
34
35 # CFLs
36 C_cour = 0.3
37 C_force = 0.25
38
39 gamma = 1.4
40
41 vslip = 1  # slip speed between the two layers
42
43 rho_1 = 1
44
45 fact = 2 / 3
46 rho_2 = rho_1 / (fact**3)
47
48 P_1 = 3.5
49 P_2 = 3.5
50
51 render_gif = True
52
53 dump_folder = "_to_trash"
54 sim_name = "kh_sph"
55
56 u_1 = P_1 / ((gamma - 1) * rho_1)
57 u_2 = P_2 / ((gamma - 1) * rho_2)
58
59 print("Mach number 1 :", vslip / np.sqrt(gamma * P_1 / rho_1))
60 print("Mach number 2 :", vslip / np.sqrt(gamma * P_2 / rho_2))
61
62
63 import os
64
65 # Create the dump directory if it does not exist
66 if shamrock.sys.world_rank() == 0:
67     os.makedirs(dump_folder, exist_ok=True)
Mach number 1 : 0.45175395145262565
Mach number 2 : 0.8299250027587324

Configure the solver

72 ctx = shamrock.Context()
73 ctx.pdata_layout_new()
74
75 model = shamrock.get_Model_SPH(context=ctx, vector_type="f64_3", sph_kernel=kernel)
76
77 cfg = model.gen_default_config()
78 cfg.set_artif_viscosity_VaryingCD10(
79     alpha_min=0.0, alpha_max=1, sigma_decay=0.1, alpha_u=1, beta_AV=2
80 )
81 cfg.set_boundary_periodic()
82 cfg.set_eos_adiabatic(gamma)
83 cfg.print_status()
84 model.set_solver_config(cfg)
85
86 # Set scheduler criteria to effectively disable patch splitting and merging.
87 crit_split = int(1e9)
88 crit_merge = 1
89 model.init_scheduler(crit_split, crit_merge)
----- SPH Solver configuration -----
[
    {
        "artif_viscosity": {
            "alpha_max": 1.0,
            "alpha_min": 0.0,
            "alpha_u": 1.0,
            "beta_AV": 2.0,
            "sigma_decay": 0.1,
            "type": "varying_cd10"
        },
        "boundary_config": {
            "bc_type": "periodic"
        },
        "cfl_config": {
            "cfl_cour": 0.0,
            "cfl_force": 0.0,
            "cfl_multiplier_stiffness": 2.0,
            "eta_sink": 0.05
        },
        "combined_dtdiv_divcurlv_compute": false,
        "debug_dump_filename": "",
        "do_debug_dump": false,
        "dust_config": {
            "drag_mode": {
                "type": "none"
            },
            "mode": {
                "type": "none"
            }
        },
        "enable_particle_reordering": false,
        "eos_config": {
            "Tvec": "f64_3",
            "eos_type": "adiabatic",
            "gamma": 1.4
        },
        "epsilon_h": 1e-06,
        "ext_force_config": {
            "force_list": []
        },
        "gpart_mass": 0.0,
        "h_iter_per_subcycles": 50,
        "h_max_subcycles_count": 100,
        "htol_up_coarse_cycle": 1.1,
        "htol_up_fine_cycle": 1.1,
        "kernel_id": "M6<f64>",
        "mhd_config": {
            "mhd_type": "none"
        },
        "particle_killing": [],
        "particle_reordering_step_freq": 1000,
        "save_dt_to_fields": false,
        "scheduler_config": {
            "merge_load_value": 0,
            "split_load_value": 0
        },
        "self_grav_config": {
            "softening_length": 1e-09,
            "softening_mode": "plummer",
            "type": "none"
        },
        "show_cfl_detail": false,
        "show_ghost_zone_graph": false,
        "show_neigh_stats": false,
        "smoothing_length_config": {
            "type": "density_based"
        },
        "time_state": {
            "cfl_multiplier": 0.01,
            "dt_sph": 0.0,
            "time": 0.0
        },
        "tree_reduction_level": 3,
        "type_id": "sycl::vec<f64,3>",
        "unit_sys": null,
        "use_two_stage_search": true
    }
]
------------------------------------

Setup the simulation

 94 # Compute box size
 95 (xs, ys, zs) = model.get_box_dim_fcc_3d(1, resol, resol, thick)
 96 dr = 1 / xs
 97 (xs, ys, zs) = model.get_box_dim_fcc_3d(dr, resol, resol, thick)
 98
 99 model.resize_simulation_box((-xs / 2, -ys / 2, -zs / 2), (xs / 2, ys / 2, zs / 2))
100
101 # rho1 domain
102 y_interface = ys / 4
103 model.add_cube_fcc_3d(dr, (-xs / 2, -ys / 2, -zs / 2), (xs / 2, -y_interface, zs / 2))
104 model.add_cube_fcc_3d(dr, (-xs / 2, y_interface, -zs / 2), (xs / 2, ys / 2, zs / 2))
105
106 # rho 2 domain
107 model.add_cube_fcc_3d(dr * fact, (-xs / 2, -y_interface, -zs / 2), (xs / 2, y_interface, zs / 2))
108
109 model.set_value_in_a_box(
110     "uint", "f64", u_1, (-xs / 2, -ys / 2, -zs / 2), (xs / 2, -y_interface, zs / 2)
111 )
112 model.set_value_in_a_box(
113     "uint", "f64", u_1, (-xs / 2, y_interface, -zs / 2), (xs / 2, ys / 2, zs / 2)
114 )
115
116 model.set_value_in_a_box(
117     "uint", "f64", u_2, (-xs / 2, -y_interface, -zs / 2), (xs / 2, y_interface, zs / 2)
118 )
119
120
121 # the velocity function to trigger KH
122 def vel_func(r):
123     x, y, z = r
124
125     ampl = 0.01
126     n = 2
127     pert = np.sin(2 * np.pi * n * x / (xs))
128
129     sigma = 0.05 / (2**0.5)
130     gauss1 = np.exp(-((y - y_interface) ** 2) / (2 * sigma * sigma))
131     gauss2 = np.exp(-((y + y_interface) ** 2) / (2 * sigma * sigma))
132     pert *= gauss1 + gauss2
133
134     # Alternative formula (See T. Tricco paper)
135     # interf_sz = ys/32
136     # vx = np.arctan(y/interf_sz)/np.pi
137
138     vx = 0
139     if np.abs(y) > y_interface:
140         vx = vslip / 2
141     else:
142         vx = -vslip / 2
143
144     return (vx, ampl * pert, 0)
145
146
147 model.set_field_value_lambda_f64_3("vxyz", vel_func)
148
149 vol_b = xs * ys * zs
150
151 totmass = (rho_1 * vol_b / 2) + (rho_2 * vol_b / 2)
152
153 pmass = model.total_mass_to_part_mass(totmass)
154 model.set_particle_mass(pmass)
155
156 print("Total mass :", totmass)
157 print("Current part mass :", pmass)
158
159 model.set_cfl_cour(C_cour)
160 model.set_cfl_force(C_force)
161
162 model.timestep()
Info: Add fcc lattice size : ( 32 8 6 )                                               [SPH][rank=0]
Info: Push particles :                                                              [Model][rank=0]
  rank = 0  patch id=0, add N=1536 particles, coords = (-0.5,-0.4330127018922193,-0.07654655446197431) (0.5,0.4330127018922193,0.07654655446197431)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 40.87 us   (90.4%)
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 1536.0 min = 1536.0 factor = 1
 - strategy "round robin" : max = 1459.2 min = 1459.2 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 1536
    max = 1536
    avg = 1536
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.01 us    (0.3%)
   patch tree reduce : 1.28 us    (0.1%)
   gen split merge   : 711.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 832.00 ns  (0.1%)
   LB compute        : 870.83 us  (98.3%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (0.5%)
Info: current particle counts : min =  1536 max =  1536                             [Model][rank=0]
Info: Add fcc lattice size : ( 32 8 6 )                                               [SPH][rank=0]
Info: Push particles :                                                              [Model][rank=0]
  rank = 0  patch id=0, add N=1536 particles, coords = (-0.5,-0.4330127018922193,-0.07654655446197431) (0.5,0.4330127018922193,0.07654655446197431)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.01 us    (66.8%)
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 3072.0 min = 3072.0 factor = 1
 - strategy "round robin" : max = 2918.4 min = 2918.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 3072
    max = 3072
    avg = 3072
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 us    (0.6%)
   patch tree reduce : 501.00 ns  (0.1%)
   gen split merge   : 571.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 371.00 ns  (0.1%)
   LB compute        : 416.42 us  (97.7%)
   LB move op cnt    : 0
   LB apply          : 2.16 us    (0.5%)
Info: current particle counts : min =  3072 max =  3072                             [Model][rank=0]
Info: Add fcc lattice size : ( 48 24 9 )                                              [SPH][rank=0]
Info: Push particles :                                                              [Model][rank=0]
  rank = 0  patch id=0, add N=10368 particles, coords = (-0.5,-0.4330127018922193,-0.07654655446197431) (0.5,0.4330127018922193,0.07654655446197431)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.46 us    (64.4%)
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (0.8%)
   patch tree reduce : 441.00 ns  (0.1%)
   gen split merge   : 591.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 421.00 ns  (0.1%)
   LB compute        : 375.77 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 2.06 us    (0.5%)
Info: current particle counts : min =  13440 max =  13440                           [Model][rank=0]
Total mass : 0.2900242657210449
Current part mass : 2.1579186437577746e-05
---------------- t = 0, dt = 0 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 45.61 us   (6.9%)
   patch tree reduce : 5.67 us    (0.9%)
   gen split merge   : 611.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.1%)
   LB compute        : 576.46 us  (87.8%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.0654761904761905
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.0171875 unconverged cnt = 13440
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.125297619047619
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.018906250000000003 unconverged cnt = 13440
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.125297619047619
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.020796875000000006 unconverged cnt = 13440
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.3791666666666664
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.02287656250000001 unconverged cnt = 13344
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.4250744047619044
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.025164218750000012 unconverged cnt = 13152
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.598883928571429
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.027680640625000016 unconverged cnt = 12768
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8520833333333335
Warning: smoothing length is not converged, rerunning the iterator ...    [Smoothinglength][rank=0]
     largest h = 0.027840759716552387 unconverged cnt = 144
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8520833333333335
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-3.443920760128672e-21,0)
    sum a = (7.582135945499286e-17,1.2879664700140343e-17,3.201420823196343e-16)
    sum e = 1.196351145408931
    sum de = -5.30825383648903e-16
Info: cfl dt = 1.6959368633748e-05 cfl multiplier : 0.01                       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 1.3217e+04 | 13440 |      1 | 1.017e+00 | 0.0% |   0.5% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                             [sph::Model][rank=0]

<shamrock.model_sph.TimestepLog object at 0x7f0423bc6870>

Plotting functions

167 import copy
168
169 import matplotlib
170 import matplotlib.pyplot as plt
171
172
173 def plot_state(iplot):
174     pixel_x = 1080
175     pixel_y = 1080
176     radius = 0.5
177     center = (0.0, 0.0, 0.0)
178     aspect = pixel_x / pixel_y
179     pic_range = [-radius * aspect, radius * aspect, -radius, radius]
180     delta_x = (radius * 2 * aspect, 0.0, 0.0)
181     delta_y = (0.0, radius * 2, 0.0)
182
183     def _render(field, field_type, center):
184         # Helper to reduce code duplication
185         return model.render_cartesian_slice(
186             field,
187             field_type,
188             center=center,
189             delta_x=delta_x,
190             delta_y=delta_y,
191             nx=pixel_x,
192             ny=pixel_y,
193         )
194
195     arr_rho = _render("rho", "f64", center)
196     arr_alpha = _render("alpha_AV", "f64", center)
197     arr_vel = _render("vxyz", "f64_3", center)
198
199     vy_range = np.abs(arr_vel[:, :, 1]).max()
200
201     my_cmap = copy.copy(matplotlib.colormaps.get_cmap("gist_heat"))
202     my_cmap.set_bad(color="black")
203
204     my_cmap2 = copy.copy(matplotlib.colormaps.get_cmap("nipy_spectral"))
205     my_cmap2.set_bad(color="black")
206
207     # rho plot
208     fig = plt.figure(dpi=200)
209     im0 = plt.imshow(arr_rho, cmap=my_cmap, origin="lower", extent=pic_range, vmin=1, vmax=3)
210
211     cbar0 = plt.colorbar(im0, extend="both")
212     cbar0.set_label(r"$\rho$ [code unit]")
213
214     plt.title("t = {:0.3f} [code unit]".format(model.get_time()))
215     plt.xlabel("x")
216     plt.ylabel("y")
217     plt.savefig(os.path.join(dump_folder, f"{sim_name}_rho_{iplot:04}.png"))
218
219     plt.close(fig)
220
221     # alpha plot
222     fig = plt.figure(dpi=200)
223     im0 = plt.imshow(
224         arr_alpha, cmap=my_cmap2, origin="lower", norm="log", extent=pic_range, vmin=1e-6, vmax=1
225     )
226
227     cbar0 = plt.colorbar(im0, extend="both")
228     cbar0.set_label(r"$\alpha_{AV}$ [code unit]")
229
230     plt.title("t = {:0.3f} [code unit]".format(model.get_time()))
231     plt.xlabel("x")
232     plt.ylabel("y")
233     plt.savefig(os.path.join(dump_folder, f"{sim_name}_alpha_{iplot:04}.png"))
234
235     plt.close(fig)
236
237     # vy plot
238     fig = plt.figure(dpi=200)
239     im1 = plt.imshow(
240         arr_vel[:, :, 1],
241         cmap=my_cmap,
242         origin="lower",
243         extent=pic_range,
244         vmin=-vy_range,
245         vmax=vy_range,
246     )
247
248     cbar1 = plt.colorbar(im1, extend="both")
249     cbar1.set_label(r"$v_y$ [code unit]")
250
251     plt.title("t = {:0.3f} [code unit]".format(model.get_time()))
252     plt.xlabel("x")
253     plt.ylabel("y")
254     plt.savefig(os.path.join(dump_folder, f"{sim_name}_vy_{iplot:04}.png"))
255
256     plt.close(fig)

Running the simulation

262 t_sum = 0
263 t_target = 1
264
265 plot_state(0)
266
267 i_dump = 1
268 dt_dump = 0.02
269
270 while t_sum < t_target:
271     model.evolve_until(t_sum + dt_dump)
272
273     plot_state(i_dump)
274
275     t_sum += dt_dump
276     i_dump += 1
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.85 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.83 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.82 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.02s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0, dt = 1.6959368633748e-05 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.38 us    (2.0%)
   patch tree reduce : 1.25 us    (0.3%)
   gen split merge   : 581.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.2%)
   LB compute        : 423.50 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8520833333333333
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-4.0877842065875115e-20,5.347347922772819e-21)
    sum a = (-5.0675347421385516e-17,-5.519856300060147e-17,-3.636780322695878e-17)
    sum e = 1.1963511508247078
    sum de = 4.3021142204224816e-16
Info: cfl dt = 0.0005766286633394807 cfl multiplier : 0.34                     [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6785e+04 | 13440 |      1 | 2.873e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.2125290736957649 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6959368633748e-05, dt = 0.0005766286633394807 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (1.5%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 373.02 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8520833333333335
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,6.5883701498113736e-21,-1.797764070708473e-20)
    sum a = (-5.040702107346593e-17,3.2505820433687534e-17,7.472888789560595e-17)
    sum e = 1.1963573975888835
    sum de = -8.847089727481716e-16
Info: cfl dt = 0.0009504173631537266 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    | 6.2447e+04 | 13440 |      1 | 2.152e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.6451635164713 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 0.0005935880319732287, dt = 0.0009504173631537266 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.5%)
   patch tree reduce : 1.90 us    (0.6%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 319.38 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8520833333333337
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-1.197885481783886e-21,8.692156527194323e-20)
    sum a = (5.385693126100352e-17,7.421140136747531e-17,-8.615192384989708e-18)
    sum e = 1.1963671337333188
    sum de = -6.38378239159465e-16
Info: cfl dt = 0.001183423392023894 cfl multiplier : 0.7066666666666667        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.5939e+04 | 13440 |      1 | 2.403e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.240798618878774 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0015440053951269552, dt = 0.001183423392023894 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.5%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 344.57 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8520833333333333
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,4.551964830778767e-20,3.586169661090509e-20)
    sum a = (-1.3742142247024742e-17,-9.01576529009824e-17,-6.331543502516908e-17)
    sum e = 1.1963733462943709
    sum de = -2.1163626406917047e-16
Info: cfl dt = 0.0013321235052401233 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    | 6.0772e+04 | 13440 |      1 | 2.212e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.263873057038726 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0027274287871508493, dt = 0.0013321235052401233 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.52 us    (1.2%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 356.50 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8811011904761907
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-1.724955093768796e-19,-7.606572809327676e-20)
    sum a = (4.550048214007913e-17,-1.5946251533507093e-17,8.245285348214845e-17)
    sum e = 1.1963750600813958
    sum de = 2.7755575615628914e-17
Info: cfl dt = 0.0014517457261939495 cfl multiplier : 0.8696296296296296       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.2736e+04 | 13440 |      1 | 2.549e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.8172629181203 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.004059552292390973, dt = 0.0014517457261939495 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.4%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 342.44 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8811011904761903
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,5.749850312562653e-20,1.2592771127253102e-19)
    sum a = (7.014817381326438e-18,-7.605135346749536e-17,1.0244316640215794e-17)
    sum e = 1.196373785684952
    sum de = 4.2327252813834093e-16
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012118974700471404
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,6.708158697989762e-20,8.09321378630238e-20)
    sum a = (-3.5783235111848245e-17,2.7599281500300734e-17,2.0613213370537112e-17)
    sum e = 1.196349218492897
    sum de = -2.0990154059319366e-16
Info: cfl dt = 0.0007674045592355258 cfl multiplier : 0.4565432098765432       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3399e+04 | 13440 |      1 | 3.097e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.876114060102555 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.005511298018584922, dt = 0.0007674045592355258 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.4%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 360.76 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8811011904761903
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,8.62477546884398e-20,9.957423067328553e-20)
    sum a = (-2.4896851853396287e-17,4.3545533033807824e-17,3.633905397539597e-17)
    sum e = 1.1963562107800345
    sum de = 3.8163916471489756e-16
Info: cfl dt = 0.001066093231945647 cfl multiplier : 0.6376954732510288        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8059e+04 | 13440 |      1 | 2.315e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.93435803935285 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.006278702577820448, dt = 0.001066093231945647 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.4%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 366.07 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.881101190476191
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-3.25824851045217e-19,1.5123304207521563e-19)
    sum a = (1.4508788955366427e-17,3.0665868333667484e-19,6.169589385379727e-17)
    sum e = 1.1963596526803169
    sum de = 5.221517662690189e-16
Info: cfl dt = 0.0012616150352869704 cfl multiplier : 0.7584636488340193       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6365e+04 | 13440 |      1 | 2.384e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.095661952199794 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.007344795809766096, dt = 0.0012616150352869704 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.5%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 352.07 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 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: 1.881101190476191
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,7.474805406331449e-19,2.1187599459052486e-19)
    sum a = (1.293716320326597e-17,2.2692742566913938e-17,7.200729208099296e-17)
    sum e = 1.1963603867261248
    sum de = 1.214306433183765e-16
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010224409073169963
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,-1.8687013515828623e-19,2.41972867320345e-19)
    sum a = (-4.620004726144092e-17,3.649238331706431e-17,2.1514023252838595e-17)
    sum e = 1.19634984361963
    sum de = -2.896988204881268e-16
Info: cfl dt = 0.0006909728549565848 cfl multiplier : 0.4194878829446731       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2807e+04 | 13440 |      1 | 3.140e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.466023991443295 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.008606410845053066, dt = 0.0006909728549565848 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.3%)
   patch tree reduce : 1.35 us    (0.3%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 376.02 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8811011904761907
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,3.8811489609797907e-19,2.0064581819880091e-19)
    sum a = (3.3847452173285485e-17,-2.790594018363741e-17,1.1030129516266024e-17)
    sum e = 1.1963529770256187
    sum de = -9.194034422677078e-17
Info: cfl dt = 0.0010028304874655524 cfl multiplier : 0.6129919219631154       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9675e+04 | 13440 |      1 | 2.252e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.044827112976192 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.00929738370000965, dt = 0.0010028304874655524 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.5%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 335.31 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8811011904761903
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-7.04356663288925e-19,2.689252906604824e-19)
    sum a = (1.2199265746487096e-17,3.066586833366748e-17,1.6243327132989494e-17)
    sum e = 1.1963549136684808
    sum de = -1.5265566588595902e-16
Info: cfl dt = 0.0012050701391501297 cfl multiplier : 0.7419946146420768       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9859e+04 | 13440 |      1 | 2.245e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.079048513105963 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.010300214187475202, dt = 0.0012050701391501297 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.5%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 343.78 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8811011904761903
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,5.031119023492321e-19,2.711713259388272e-19)
    sum a = (5.2869873624013596e-17,-2.6832634791959047e-17,4.44175936645465e-17)
    sum e = 1.1963555237912649
    sum de = -6.938893903907228e-17
Info: cfl dt = 0.0013343524074419953 cfl multiplier : 0.8279964097613846       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5150e+04 | 13440 |      1 | 2.977e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.573902948355277 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.011505284326625332, dt = 0.0013343524074419953 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.4%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 332.31 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8811011904761905
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,1.0541392239698197e-18,3.659540146849772e-19)
    sum a = (2.3066482837230512e-17,4.231889830046113e-17,-3.6343845517323106e-17)
    sum e = 1.1963554092635758
    sum de = -2.0209528495129803e-16
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011128264207043754
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,7.618551664145516e-19,3.0635921196622886e-19)
    sum a = (1.743162953091911e-17,-6.4398323500701715e-18,8.040207353733443e-18)
    sum e = 1.19635006204974
    sum de = -8.673617379884035e-18
Info: cfl dt = 0.0007116148707606397 cfl multiplier : 0.4426654699204615       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2611e+04 | 13440 |      1 | 3.154e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.229865519417205 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.012839636734067328, dt = 0.0007116148707606397 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.5%)
   patch tree reduce : 1.66 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 309.00 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8811011904761905
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,6.756074117261118e-19,3.270227365270009e-19)
    sum a = (-1.7383714111647755e-17,2.1236113821064733e-17,-7.137480854661107e-17)
    sum e = 1.1963515298236997
    sum de = 7.806255641895632e-17
Info: cfl dt = 0.0010138488734798446 cfl multiplier : 0.628443646613641        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9289e+04 | 13440 |      1 | 2.267e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.301121261516718 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.013551251604827967, dt = 0.0010138488734798446 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.6%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 316.05 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8811011904761905
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,6.133173666733497e-19,2.466146735622575e-19)
    sum a = (1.1959688650130319e-17,-7.378974567788739e-17,-2.1101950647104937e-17)
    sum e = 1.1963528909155192
    sum de = -1.6219664500383146e-16
Info: cfl dt = 0.0012140161439088862 cfl multiplier : 0.7522957644090941       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.2186e+04 | 13440 |      1 | 2.575e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.171908598016723 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.014565100478307813, dt = 0.0012140161439088862 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.5%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 1.13 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 313.60 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8811011904761903
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,2.5395172213818386e-19,2.1202573027574783e-19)
    sum a = (8.868185798742466e-17,-4.523215579215954e-17,-9.111596128640951e-17)
    sum e = 1.1963542529966895
    sum de = 2.992397996059992e-17
Info: cfl dt = 0.0013514695226909445 cfl multiplier : 0.834863842939396        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9576e+04 | 13440 |      1 | 2.256e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.373079877762343 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.015779116622216698, dt = 0.0013514695226909445 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.4%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 338.59 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8811011904761903
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,1.1499700625125307e-19,4.62683267339026e-20)
    sum a = (-1.9166167708542177e-19,1.682789524810003e-17,9.90483589467824e-17)
    sum e = 1.196355855273173
    sum de = 8.543513119185775e-17
Info: cfl dt = 0.0014501049557003444 cfl multiplier : 0.889909228626264        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9604e+04 | 13440 |      1 | 2.255e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.5765412875253 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.01713058614490764, dt = 0.0014501049557003444 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.5%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 314.59 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8640624999999995
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,6.708158697989762e-20,3.4469154738331324e-19)
    sum a = (-9.77474553135651e-18,-1.2879664700140343e-17,2.6440926239415718e-17)
    sum e = 1.1963577746442513
    sum de = 3.7730235602495554e-17
Info: cfl dt = 0.0015382686268546532 cfl multiplier : 0.9266061524175093       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9847e+04 | 13440 |      1 | 2.246e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.24597402979981 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.018580691100607987, dt = 0.0014193088993920133 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.79 us    (1.5%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 311.85 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8632440476190475
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-2.7311788984672605e-19,3.069581547071208e-19)
    sum a = (-3.641571864623014e-17,-1.5946251533507093e-17,-4.000338566417288e-18)
    sum e = 1.1963587059762273
    sum de = 1.457167719820518e-16
Info: cfl dt = 0.0016009811815893937 cfl multiplier : 0.9510707682783396       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.5544e+04 | 13440 |      1 | 2.420e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.11641090898637 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 20                                                      [SPH][rank=0]
Info: time since start : 24.390716053000002 (s)                                       [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.86 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.80 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.80 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.04s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.02, dt = 0.0016009811815893937 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.57 us    (2.5%)
   patch tree reduce : 1.25 us    (0.3%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 354.04 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8632440476190473
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,-4.791541927135544e-19,3.123486393751483e-19)
    sum a = (7.340642232371654e-18,5.918512588397825e-17,-1.048844570140335e-16)
    sum e = 1.1963620169444162
    sum de = -1.214306433183765e-16
Info: cfl dt = 0.0016578154489938772 cfl multiplier : 0.9673805121855598       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3703e+04 | 13440 |      1 | 3.075e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.741496798546287 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.021600981181589395, dt = 0.0016578154489938772 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.85 us    (1.3%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 353.06 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8632440476190475
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,4.31238773442199e-19,4.926304043836231e-20)
    sum a = (-6.19833863694254e-17,-1.9932814416883864e-17,-3.3468920361041776e-18)
    sum e = 1.196364137098591
    sum de = -1.231653667943533e-16
Info: cfl dt = 0.0017127056318353199 cfl multiplier : 0.9782536747903731       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8289e+04 | 13440 |      1 | 2.306e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.883560074663862 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.02325879663058327, dt = 0.0017127056318353199 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.6%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 317.83 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.16 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8811011904761903
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,3.545741026080303e-19,1.2982083908832866e-19)
    sum a = (4.013395518168732e-17,4.216556895879279e-17,2.5826410987260583e-18)
    sum e = 1.1963659339355448
    sum de = 4.640385298237959e-17
Info: cfl dt = 0.0017677005654260394 cfl multiplier : 0.9855024498602486       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9509e+04 | 13440 |      1 | 2.258e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.30043263536236 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.02497150226241859, dt = 0.0017677005654260394 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.3%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 381.07 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8811011904761907
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,6.085258247462141e-19,1.3086898888488954e-19)
    sum a = (-1.0273065891778608e-17,-8.417780857591724e-17,2.7354912862016824e-17)
    sum e = 1.1963673913361168
    sum de = -6.678685382510707e-17
Info: cfl dt = 0.001863045236962047 cfl multiplier : 0.990334966573499         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0905e+04 | 13440 |      1 | 2.640e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.10321192976627 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.02673920282784463, dt = 0.001863045236962047 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.4%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 358.51 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.70 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8811011904761903
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-5.174865281306388e-19,1.8469896772255293e-19)
    sum a = (-3.3847452173285485e-17,-2.3306059933587286e-17,2.521788516251437e-17)
    sum e = 1.196369301165497
    sum de = -6.852157730108388e-17
Info: cfl dt = 0.0019187593324731893 cfl multiplier : 0.9935566443823326       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9170e+04 | 13440 |      1 | 2.271e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.52750722465266 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.028602248064806678, dt = 0.0019187593324731893 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.5%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 354.18 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8714285714285714
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,6.229004505276208e-20,2.1531991535065351e-19)
    sum a = (4.75320959171846e-17,-2.5606000058612347e-17,6.583578607884238e-18)
    sum e = 1.1963702851256781
    sum de = 9.974659986866641e-17
Info: cfl dt = 0.0019628452579179283 cfl multiplier : 0.9957044295882218       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9641e+04 | 13440 |      1 | 2.253e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.652842855309856 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.030521007397279868, dt = 0.0019628452579179283 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.4%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 346.87 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 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: 1.8703869047619046
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,3.449910187537592e-19,2.0738392403383528e-19)
    sum a = (3.3387464148280475e-17,-5.0598682750551347e-17,-2.5826410987260583e-17)
    sum e = 1.19637080501668
    sum de = 5.204170427930421e-17
Info: cfl dt = 0.001984428908702307 cfl multiplier : 0.9971362863921479        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9667e+04 | 13440 |      1 | 2.253e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.37043357795899 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.0324838526551978, dt = 0.001984428908702307 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.5%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 344.00 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.43 us    (85.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-3.354079348994881e-20,1.5722246948413506e-19)
    sum a = (-1.920450004395926e-17,-7.666467083416871e-20,-2.804968644145148e-17)
    sum e = 1.1963707211399643
    sum de = 1.43982048506075e-16
Info: cfl dt = 0.0019912964735130357 cfl multiplier : 0.9980908575947653       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5941e+04 | 13440 |      1 | 2.925e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.419825478468862 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.034468281563900104, dt = 0.0019912964735130357 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.5%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 331.81 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8799851190476191
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.293716320326597e-19,8.31033052987571e-20)
    sum a = (4.2472227642129466e-17,-4.400552105881284e-17,1.364631140848203e-17)
    sum e = 1.1963702593498278
    sum de = -1.8908485888147197e-16
Info: cfl dt = 0.002007812002181347 cfl multiplier : 0.9987272383965102        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7205e+04 | 13440 |      1 | 2.349e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.512300333383646 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.03645957803741314, dt = 0.002007812002181347 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.4%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 373.20 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.74 us    (72.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8807291666666668
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,2.2759824153893835e-19,1.546769628353443e-19)
    sum a = (-3.0052550966994134e-17,2.606598808361736e-18,2.6276815928411326e-17)
    sum e = 1.1963698244142575
    sum de = 1.6653345369377348e-16
Info: cfl dt = 0.002023450062050561 cfl multiplier : 0.9991514922643402        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6086e+04 | 13440 |      1 | 2.916e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.785188151699856 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.03846739003959449, dt = 0.0015326099604055093 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.5%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 335.01 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8639136904761906
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.197885481783886e-19,2.0364053190326063e-19)
    sum a = (2.322939526275312e-17,1.3799640750150367e-17,2.5316111772020647e-17)
    sum e = 1.196362264490394
    sum de = -1.0755285551056204e-16
Info: cfl dt = 0.002039782222656882 cfl multiplier : 0.9994343281762269        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9690e+04 | 13440 |      1 | 2.252e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.503792858846804 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 31                                                      [SPH][rank=0]
Info: time since start : 34.169371182 (s)                                             [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.81 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.82 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.80 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.06s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.04, dt = 0.002039782222656882 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.15 us    (2.5%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 561.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 349.86 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8632440476190473
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,-2.252024705753706e-19,2.611390350288872e-19)
    sum a = (1.8897841360622587e-17,-2.491601802110483e-17,8.457071501394236e-18)
    sum e = 1.1963686352547112
    sum de = 5.724587470723463e-17
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010097879950727879
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,2.156193867210995e-19,2.376305324488784e-19)
    sum a = (-5.404859293808894e-17,2.307606592108478e-17,-2.5653915477883705e-17)
    sum e = 1.1963529970104603
    sum de = -1.8648277366750676e-16
Info: cfl dt = 0.0010325024709288968 cfl multiplier : 0.499811442725409        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1764e+04 | 13440 |      1 | 3.218e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.818637609189896 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.042039782222656884, dt = 0.0010325024709288968 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.6%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 328.68 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 1.863244047619048
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,-1.0541392239698198e-19,1.6972539920025436e-19)
    sum a = (2.6985964133627386e-17,4.58071408234158e-17,3.9213979131677295e-17)
    sum e = 1.1963569144775914
    sum de = -1.2750217548429532e-16
Info: cfl dt = 0.0013857563958165795 cfl multiplier : 0.6665409618169393       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9636e+04 | 13440 |      1 | 2.254e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.493128320455597 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.04307228469358578, dt = 0.0013857563958165795 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.4%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 363.99 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8804315476190476
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229103,3.8332335417084355e-20,2.6885042281787096e-19)
    sum a = (2.357438628150688e-17,-7.513137741748534e-18,-1.973156965594417e-17)
    sum e = 1.1963595826117641
    sum de = -1.708702623837155e-16
Info: cfl dt = 0.0016259299273677509 cfl multiplier : 0.7776939745446262       [sph::Model][rank=0]
Info: Timestep 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.0282e+04 | 13440 |      1 | 2.230e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.375796166931657 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.044458041089402364, dt = 0.0016259299273677509 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (1.3%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 357.39 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8811011904761905
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,-7.666467083416871e-20,1.8701987084350922e-19)
    sum a = (-3.664571265873264e-17,3.4729095887878426e-17,-4.219192243939203e-17)
    sum e = 1.1963613907704858
    sum de = 3.122502256758253e-17
Info: cfl dt = 0.0018004902760843833 cfl multiplier : 0.8517959830297507       [sph::Model][rank=0]
Info: Timestep 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.0078e+04 | 13440 |      1 | 2.237e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.164884563140387 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.046083971016770114, dt = 0.0018004902760843833 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.80 us    (1.3%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 345.88 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8811011904761903
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,3.976979799522502e-19,1.0182026595163031e-19)
    sum a = (6.171506002150581e-18,5.9798443250651594e-18,2.458300585716891e-17)
    sum e = 1.1963624252885525
    sum de = -2.2551405187698492e-17
Info: cfl dt = 0.0019066570317068008 cfl multiplier : 0.9011973220198337       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0907e+04 | 13440 |      1 | 2.640e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.55089277567795 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.0478844612928545, dt = 0.0019066570317068008 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (1.3%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 349.11 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8811011904761903
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,4.6957110885928335e-19,2.1359795497058918e-19)
    sum a = (2.6525976108622373e-17,2.5299341375275673e-17,-2.6442124124897502e-17)
    sum e = 1.196362641760899
    sum de = -9.93129189996722e-17
Info: cfl dt = 0.001964496979870758 cfl multiplier : 0.9341315480132225        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9722e+04 | 13440 |      1 | 2.250e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.50050404357002 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.049791118324561304, dt = 0.001964496979870758 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.2%)
   patch tree reduce : 1.66 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.2%)
   LB compute        : 401.48 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8811011904761903
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,3.354079348994881e-19,9.927475930283956e-20)
    sum a = (-7.858128760502292e-18,6.700492230906345e-17,-6.900179740719719e-17)
    sum e = 1.1963625143847634
    sum de = -1.5612511283791264e-17
Info: cfl dt = 0.002003189919250456 cfl multiplier : 0.9560876986754817        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1606e+04 | 13440 |      1 | 2.604e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.155250411288055 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.05175561530443206, dt = 0.002003189919250456 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.5%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 322.01 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8811011904761907
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,3.1145022526381037e-19,-7.928504532557096e-20)
    sum a = (5.749850312562653e-19,2.9515898271154955e-17,2.2503476660792083e-17)
    sum e = 1.1963626135848286
    sum de = -5.4643789493269423e-17
Info: cfl dt = 0.00202973147370055 cfl multiplier : 0.9707251324503211         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6054e+04 | 13440 |      1 | 2.398e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.077037425689564 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.05375880522368252, dt = 0.00202973147370055 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.4%)
   patch tree reduce : 1.23 us    (0.3%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 361.12 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.881101190476191
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,4.120726057336568e-19,6.199057368231611e-20)
    sum a = (-1.3761308414733283e-17,-7.66646708341687e-18,-5.4015052144598993e-17)
    sum e = 1.1963629705465169
    sum de = -1.2923689896027213e-16
Info: cfl dt = 0.0020919736609405987 cfl multiplier : 0.9804834216335475       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9525e+04 | 13440 |      1 | 2.258e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.36232340174744 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.05578853669738307, dt = 0.0020919736609405987 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (1.3%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 367.35 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.881101190476191
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,6.133173666733497e-19,-1.103552000093405e-19)
    sum a = (2.0450300945014504e-17,-4.6880446215094165e-17,-4.008124822048883e-18)
    sum e = 1.1963639952513287
    sum de = -1.5525775109992423e-16
Info: cfl dt = 0.002112663868943885 cfl multiplier : 0.9869889477556985        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0167e+04 | 13440 |      1 | 2.679e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.111319327261572 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.057880510358323665, dt = 0.002112663868943885 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.3%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 373.94 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.881101190476191
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,8.145621276130425e-19,-8.594828331799383e-20)
    sum a = (4.638212585467207e-18,-1.2783833861597633e-17,-4.490633094111432e-17)
    sum e = 1.19636481559677
    sum de = 1.2836953722228372e-16
Info: cfl dt = 0.0021197262929455248 cfl multiplier : 0.9913259651704657       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.5982e+04 | 13440 |      1 | 2.401e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.67969302162694 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.05999317422726755, dt = 6.825772732449442e-06 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.3%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.2%)
   LB compute        : 399.83 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (71.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.881101190476191
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-4.4082185729647e-19,-1.1230176391723933e-19)
    sum a = (-1.8437853335617574e-17,5.897429803918427e-17,-6.401020860460373e-17)
    sum e = 1.1963538312524065
    sum de = 2.168404344971009e-18
Info: cfl dt = 0.002127361697601232 cfl multiplier : 0.9942173101136437        [sph::Model][rank=0]
Info: Timestep 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.1770e+04 | 13440 |      1 | 2.176e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.11293568043709513 (tsim/hr)                           [sph::Model][rank=0]
Info: iteration since start : 43                                                      [SPH][rank=0]
Info: time since start : 43.919645334 (s)                                             [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.83 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.82 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.82 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.08s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.06, dt = 0.002127361697601232 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.95 us    (2.3%)
   patch tree reduce : 1.31 us    (0.3%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 368.44 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.855059523809524
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,-3.354079348994881e-20,-2.564972287869746e-19)
    sum a = (-1.215135032721574e-17,-6.229004505276207e-19,2.2280669961180282e-17)
    sum e = 1.196365177516942
    sum de = -3.642919299551295e-17
Info: cfl dt = 0.00213811657147329 cfl multiplier : 0.9961448734090957         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.2006e+04 | 13440 |      1 | 2.584e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.634728024333285 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.06212736169760123, dt = 0.00213811657147329 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.4%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 351.80 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8549107142857149
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-7.666467083416871e-20,-1.3161766731100448e-19)
    sum a = (-1.4911278477245813e-17,-2.6679305450290712e-17,-3.47530535975141e-17)
    sum e = 1.1963660988344385
    sum de = -1.7564075194265172e-17
Info: cfl dt = 0.002142340237981182 cfl multiplier : 0.9974299156060639        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0728e+04 | 13440 |      1 | 2.649e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.05235597825881 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.06426547826907453, dt = 0.002142340237981182 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.5%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 512.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.3%)
   LB compute        : 328.70 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8808035714285718
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,2.5395172213818386e-19,-2.325395191512969e-19)
    sum a = (-4.224223362962696e-17,1.3885888504838806e-17,2.2675972170168964e-17)
    sum e = 1.196366413739966
    sum de = -6.591949208711867e-17
Info: cfl dt = 0.0021833481476595967 cfl multiplier : 0.9982866104040425       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.4507e+04 | 13440 |      1 | 2.466e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.278314553848713 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.06640781850705571, dt = 0.0021833481476595967 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.6%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 353.67 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8799107142857145
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-1.102054643241175e-19,-1.5722246948413506e-19)
    sum a = (-4.615213184216956e-17,-3.656904798789847e-17,9.372256009477124e-18)
    sum e = 1.1963669371966208
    sum de = -6.830473686658678e-17
Info: cfl dt = 0.002180794229603431 cfl multiplier : 0.9988577402693618        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9658e+04 | 13440 |      1 | 2.253e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.88976401538077 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.0685911666547153, dt = 0.002180794229603431 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.4%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 345.62 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8802083333333335
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,6.229004505276208e-20,-1.5812088359547295e-19)
    sum a = (-1.364631140848203e-17,2.2309419212743094e-17,-1.6674565906431695e-18)
    sum e = 1.1963665166241917
    sum de = 5.377642775528102e-17
Info: cfl dt = 0.00217066058249493 cfl multiplier : 0.9992384935129079         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9949e+04 | 13440 |      1 | 2.242e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.01849800944906 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.07077196088431874, dt = 0.00217066058249493 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.6%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 318.85 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8805803571428574
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,5.366526958391809e-19,-1.7309445211777153e-19)
    sum a = (2.924757192323536e-17,7.53422052622793e-17,4.6760657666915775e-17)
    sum e = 1.196365798946176
    sum de = 5.984795992119984e-17
Info: cfl dt = 0.002173892458537422 cfl multiplier : 0.9994923290086053        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6121e+04 | 13440 |      1 | 2.395e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.63000192434935 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.07294262146681367, dt = 0.002173892458537422 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.4%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 340.02 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8804315476190478
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,7.331059148517383e-19,-2.994713704459715e-21)
    sum a = (-5.558188635477231e-18,9.16142816468316e-18,3.4870446374728924e-17)
    sum e = 1.196365208631695
    sum de = -8.023096076392733e-18
Info: cfl dt = 0.0021794331189129296 cfl multiplier : 0.9996615526724035       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.4242e+04 | 13440 |      1 | 2.478e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.584520555755077 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0751165139253511, dt = 0.0021794331189129296 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.4%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 345.34 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8804315476190478
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,6.181089086004853e-19,5.854665292218743e-20)
    sum a = (1.1768026973044897e-17,3.3042473129526713e-17,1.1831065696523774e-17)
    sum e = 1.1963647050870467
    sum de = -2.5153490401663703e-17
Info: cfl dt = 0.002160361280571982 cfl multiplier : 0.9997743684482691        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9396e+04 | 13440 |      1 | 2.263e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.67425307006749 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.07729594704426403, dt = 0.002160361280571982 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.7%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 314.28 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.76 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: 1.8805803571428574
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,1.0780969336054974e-18,5.854665292218743e-20)
    sum a = (-1.2841332364723258e-17,-1.5773756024130212e-17,-9.016244444290953e-17)
    sum e = 1.196364100967049
    sum de = 9.71445146547012e-17
Info: cfl dt = 0.002171200024203208 cfl multiplier : 0.9998495789655127        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9531e+04 | 13440 |      1 | 2.258e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.44890896748237 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.07945630832483601, dt = 0.0005436916751639931 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.74 us    (1.4%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 313.31 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.91 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8805803571428574
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,7.7143825026882265e-19,-9.957423067328553e-20)
    sum a = (9.621416189688173e-18,-5.309028455266183e-18,8.001635441220003e-17)
    sum e = 1.1963552796479424
    sum de = 3.903127820947816e-18
Info: cfl dt = 0.0021759753338125637 cfl multiplier : 0.9998997193103417       [sph::Model][rank=0]
Info: Timestep 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.1976e+04 | 13440 |      1 | 2.169e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.025722543782678 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 53                                                      [SPH][rank=0]
Info: time since start : 53.313572531000005 (s)                                       [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.82 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.82 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.82 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.10s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.08, dt = 0.0021759753338125637 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.46 us    (2.3%)
   patch tree reduce : 1.39 us    (0.3%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 393.78 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8652529761904766
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.3847556169421722e-18,8.744564017022369e-20)
    sum a = (-4.358386536922491e-17,4.606588408748112e-17,2.3813963377863653e-18)
    sum e = 1.1963637999447618
    sum de = 4.640385298237959e-17
Info: cfl dt = 0.0021849555137885106 cfl multiplier : 0.9999331462068944       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.2574e+04 | 13440 |      1 | 2.556e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.64297247949806 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.08217597533381256, dt = 0.0021849555137885106 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.40 us    (1.4%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 359.92 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8644345238095241
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,4.0728106380652126e-19,3.039634410026611e-20)
    sum a = (-4.454217375465202e-17,-8.49540383681132e-18,1.082888475532633e-18)
    sum e = 1.1963636943170146
    sum de = 4.423544863740858e-17
Info: cfl dt = 0.002202307266014041 cfl multiplier : 0.9999554308045964        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.4798e+04 | 13440 |      1 | 2.453e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.07077944817043 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.08436093084760107, dt = 0.002202307266014041 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.5%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 882.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 322.10 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8796130952380958
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,4.743626507864189e-19,5.36802431524404e-20)
    sum a = (-5.924262438710387e-17,3.8083175236873306e-17,1.9223666211667804e-17)
    sum e = 1.196363684331111
    sum de = -4.640385298237959e-17
Info: cfl dt = 0.002223018841448953 cfl multiplier : 0.9999702872030642        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9448e+04 | 13440 |      1 | 2.261e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.06886842081503 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.08656323811361512, dt = 0.002223018841448953 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.5%)
   patch tree reduce : 1.67 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 330.82 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 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: 1.8804315476190478
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,1.303299404180868e-18,9.118903230079832e-20)
    sum a = (-2.827009737009971e-17,-1.5361683418396556e-17,4.635337660310926e-17)
    sum e = 1.1963637411757617
    sum de = 7.45931094670027e-17
Info: cfl dt = 0.0022372274222737863 cfl multiplier : 0.9999801914687095       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9149e+04 | 13440 |      1 | 2.272e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.22022018364262 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.08878625695506408, dt = 0.0022372274222737863 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.4%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 347.72 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 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: 1.881101190476191
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,6.51649702090434e-19,2.1367282281320068e-19)
    sum a = (-2.0220306932511996e-17,3.5802401279556784e-17,5.572563261258638e-17)
    sum e = 1.1963637127811366
    sum de = 1.3270634591222574e-16
Info: cfl dt = 0.0022585965572124197 cfl multiplier : 0.9999867943124731       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7277e+04 | 13440 |      1 | 2.346e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.32363240602619 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.09102348437733786, dt = 0.0022585965572124197 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.44 us    (1.3%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 394.71 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.871949404761905
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,1.0397645981884132e-18,3.5262753870013147e-19)
    sum a = (3.8332335417084353e-17,-2.1887763523155166e-17,-5.749850312562653e-19)
    sum e = 1.1963636492528038
    sum de = 9.974659986866641e-17
Info: cfl dt = 0.002281046657683645 cfl multiplier : 0.9999911962083153        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.3052e+04 | 13440 |      1 | 2.533e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.095268140422675 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.09328208093455027, dt = 0.002281046657683645 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.3%)
   patch tree reduce : 1.81 us    (0.4%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 411.42 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 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: 1.871949404761905
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,2.0028645255426574e-18,2.705723831979353e-19)
    sum a = (-2.4063123558074704e-17,-3.6224056969144716e-17,-4.4561339922360565e-18)
    sum e = 1.196363452244517
    sum de = 8.413408858487514e-17
Info: cfl dt = 0.00223341840747381 cfl multiplier : 0.9999941308055437         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.5984e+04 | 13440 |      1 | 2.401e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.20604834366411 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.09556312759223391, dt = 0.00223341840747381 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.4%)
   patch tree reduce : 1.38 us    (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 385.78 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8800595238095246
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,6.181089086004853e-19,2.622433357074067e-19)
    sum a = (3.605156145976784e-17,-3.074253300450165e-17,1.2390927423572518e-17)
    sum e = 1.196362618042023
    sum de = -5.204170427930421e-18
Info: cfl dt = 0.0022521637422939526 cfl multiplier : 0.9999960872036958       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9216e+04 | 13440 |      1 | 2.270e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.425101177574135 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.09779654599970772, dt = 0.0022034540002922876 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.4%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 394.91 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (73.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8805803571428577
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,9.439337596457023e-19,3.02054311016068e-19)
    sum a = (-7.973125766753546e-18,-3.6070727627476377e-17,1.0982214096994668e-17)
    sum e = 1.1963619933516378
    sum de = -4.597017211338539e-17
Info: cfl dt = 0.0022720353414706572 cfl multiplier : 0.9999973914691305       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9268e+04 | 13440 |      1 | 2.268e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.98050010526311 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 62                                                      [SPH][rank=0]
Info: time since start : 62.300535444000005 (s)                                       [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.83 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.82 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.82 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.12s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.1, dt = 0.0022720353414706572 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.12 us    (2.3%)
   patch tree reduce : 1.35 us    (0.3%)
   gen split merge   : 571.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 369.37 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.86421130952381
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,5.98942740891943e-19,3.3450952078815017e-19)
    sum a = (-4.446550908381785e-18,4.5998802500501224e-18,-3.133668420346646e-17)
    sum e = 1.1963621132603002
    sum de = 0
Info: cfl dt = 0.002262780169241473 cfl multiplier : 0.9999982609794204        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1008e+04 | 13440 |      1 | 3.277e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.956396107920803 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.10227203534147067, dt = 0.002262780169241473 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.3%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 361.97 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.86421130952381
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,5.701934893291298e-19,2.0483841738504452e-19)
    sum a = (1.8533684174160286e-17,-1.9932814416883864e-17,2.289398732785363e-17)
    sum e = 1.1963619874807645
    sum de = 2.992397996059992e-17
Info: cfl dt = 0.002247761320855004 cfl multiplier : 0.999998840652947         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9237e+04 | 13440 |      1 | 2.269e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.90336485693023 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.10453481551071214, dt = 0.002247761320855004 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.6%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 360.57 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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: 1.8645833333333337
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-3.354079348994881e-20,3.1414546759782414e-19)
    sum a = (6.4302492662159e-18,-2.37660479585923e-18,3.5102836158195e-17)
    sum e = 1.1963620911647743
    sum de = 2.3418766925686896e-17
Info: cfl dt = 0.002238744411630579 cfl multiplier : 0.9999992271019646        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9549e+04 | 13440 |      1 | 2.257e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.85345848319227 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.10678257683156715, dt = 0.002238744411630579 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.5%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 320.29 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8809523809523814
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,2.060363028668284e-19,4.09826570455312e-19)
    sum a = (-2.0306554687200438e-17,6.669826362572678e-18,6.583099453691525e-17)
    sum e = 1.196362465985153
    sum de = 2.7538735181131813e-17
Info: cfl dt = 0.0022353393923737544 cfl multiplier : 0.9999994847346431       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9493e+04 | 13440 |      1 | 2.259e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.67560735253764 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.10902132124319773, dt = 0.0022353393923737544 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.62 us    (1.6%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 326.74 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8808035714285718
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,3.25824851045217e-19,6.059803180974234e-19)
    sum a = (2.38331295455722e-17,5.1365329458893034e-17,6.73355387020358e-17)
    sum e = 1.196363016454243
    sum de = -3.3393426912553537e-17
Info: cfl dt = 0.0022370742306706205 cfl multiplier : 0.999999656489762        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1275e+04 | 13440 |      1 | 2.621e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.700812834723692 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.11125666063557149, dt = 0.0022370742306706205 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.4%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 328.51 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8806547619047622
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.1284081238404207e-18,7.35801157185752e-19)
    sum a = (-1.734538177623067e-17,3.7719018050411005e-17,1.7412463363210567e-17)
    sum e = 1.1963636387177998
    sum de = 7.806255641895632e-18
Info: cfl dt = 0.002310979609685713 cfl multiplier : 0.9999997709931746        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7733e+04 | 13440 |      1 | 2.816e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.602179197710186 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.11349373486624212, dt = 0.002310979609685713 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (1.9%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 328.80 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 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: 1.8805059523809526
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,7.450847696695771e-19,7.3669957129709e-19)
    sum a = (1.046472756886403e-17,-2.1619437175235577e-17,3.601802066627789e-17)
    sum e = 1.1963646895362368
    sum de = 5.854691731421724e-18
Info: cfl dt = 0.002318878656330359 cfl multiplier : 0.999999847328783         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9393e+04 | 13440 |      1 | 2.263e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.76517450325188 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.11580471447592783, dt = 0.002318878656330359 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.7%)
   patch tree reduce : 1.56 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 314.45 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.880654761904762
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,5.534230925841554e-19,8.479531854177684e-19)
    sum a = (-1.3454649731396608e-17,-4.109226356711443e-17,4.250457055013763e-17)
    sum e = 1.1963650753466848
    sum de = -6.938893903907228e-17
Info: cfl dt = 0.0022764070960074436 cfl multiplier : 0.9999998982191887       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0695e+04 | 13440 |      1 | 2.651e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.488306911187642 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.11812359313225819, dt = 0.00187640686774182 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.5%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 321.10 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.880505952380952
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,1.9405744804898953e-19,9.377945965515598e-19)
    sum a = (1.8725345851245706e-17,-1.0579724575115282e-17,-5.222181757836851e-17)
    sum e = 1.1963620813292215
    sum de = -2.3635607360183997e-17
Info: cfl dt = 0.0022812681403103436 cfl multiplier : 0.9999999321461258       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9189e+04 | 13440 |      1 | 2.271e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.749048957210704 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 71                                                      [SPH][rank=0]
Info: time since start : 71.554919232 (s)                                             [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.85 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.86 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.83 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.14s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.12000000000000001, dt = 0.0022812681403103436 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.61 us   (2.7%)
   patch tree reduce : 2.93 us    (0.7%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.74 us    (0.4%)
   LB compute        : 399.82 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8736607142857145
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,5.98942740891943e-20,7.245709807940281e-19)
    sum a = (4.2548892312963635e-18,1.5332934166833742e-19,6.052675762357619e-17)
    sum e = 1.1963644079371578
    sum de = 1.5612511283791264e-17
Info: cfl dt = 0.0023170794340528966 cfl multiplier : 0.999999954764084        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9979e+04 | 13440 |      1 | 2.241e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.65045056162519 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.12228126814031036, dt = 0.0023170794340528966 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.4%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 358.75 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.855133928571429
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,7.438868841877932e-19,1.00951798977337e-18)
    sum a = (2.472435634401941e-18,-3.020588030866247e-17,-7.898856866882944e-17)
    sum e = 1.1963641152987432
    sum de = -1.0842021724855044e-18
Info: cfl dt = 0.002321063120002645 cfl multiplier : 0.9999999698427228        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9818e+04 | 13440 |      1 | 2.247e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.12561509207696 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.12459834757436325, dt = 0.002321063120002645 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.4%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 353.85 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8541666666666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,3.988958654340341e-19,6.558423012766776e-19)
    sum a = (1.381880691785891e-17,-2.3459389275255625e-17,-3.085273846882577e-17)
    sum e = 1.196363382741442
    sum de = 4.7704895589362195e-17
Info: cfl dt = 0.0023111832880821415 cfl multiplier : 0.9999999798951485       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3800e+04 | 13440 |      1 | 3.068e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.231047305180475 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1269194106943659, dt = 0.0023111832880821415 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.3%)
   patch tree reduce : 1.74 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 384.84 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8781249999999998
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,2.982734849641876e-19,6.449115962553997e-19)
    sum a = (-4.182057794003903e-17,-3.2199161750350857e-17,4.5141116495543965e-17)
    sum e = 1.1963625276752834
    sum de = 1.1709383462843448e-17
Info: cfl dt = 0.002288895772943086 cfl multiplier : 0.9999999865967656        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9625e+04 | 13440 |      1 | 2.254e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.912017028364566 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.12923059398244804, dt = 0.002288895772943086 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (1.4%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 328.60 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.80 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8777529761904757
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,3.183380667840677e-19,8.290864890796722e-19)
    sum a = (-1.9741152739798443e-18,4.599880250050123e-19,1.3234238802748373e-17)
    sum e = 1.1963617330250644
    sum de = -2.6020852139652106e-18
Info: cfl dt = 0.0022695190253599344 cfl multiplier : 0.9999999910645103       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1977e+04 | 13440 |      1 | 2.586e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.867223903860353 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.13151948975539113, dt = 0.0022695190253599344 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.5%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 320.00 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 24.96 us   (6.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8781994047619046
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,8.612796614026141e-19,8.040806296474336e-19)
    sum a = (-1.2783833861597633e-17,-3.4959089900380934e-17,4.643004127394343e-18)
    sum e = 1.1963611578317976
    sum de = 6.982261990806649e-17
Info: cfl dt = 0.0023370574029185254 cfl multiplier : 0.9999999940430069       [sph::Model][rank=0]
Info: Timestep 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.0002e+04 | 13440 |      1 | 2.240e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.47584865559536 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.13378900878075106, dt = 0.0023370574029185254 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.6%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.4%)
   LB compute        : 324.80 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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: 1.8793898809523806
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.0541392239698198e-19,8.09620850000684e-19)
    sum a = (-1.1212208109497174e-17,-1.6866227583517116e-18,-3.260644281415738e-18)
    sum e = 1.1963611909520033
    sum de = -1.6046192152785466e-17
Info: cfl dt = 0.0023156011848369093 cfl multiplier : 0.9999999960286713       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6250e+04 | 13440 |      1 | 2.389e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.2122057314233 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.1361260661836696, dt = 0.0023156011848369093 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.3%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.3%)
   LB compute        : 367.97 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.880059523809524
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,2.395770963567772e-21,8.248938898934285e-19)
    sum a = (-3.2735814446190036e-17,1.364631140848203e-17,-3.068982604330316e-18)
    sum e = 1.196361139906967
    sum de = -3.5778671692021646e-17
Info: cfl dt = 0.002298001355327122 cfl multiplier : 0.9999999973524476        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9625e+04 | 13440 |      1 | 2.254e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.98242320934976 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.1384416673685065, dt = 0.0015583326314935197 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.5%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 321.34 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.880059523809524
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,3.425952477901914e-19,8.0632666492577835e-19)
    sum a = (-1.4662118297034766e-17,-4.4925497108822866e-17,-2.0337699709726818e-17)
    sum e = 1.1963587770317894
    sum de = -2.7538735181131813e-17
Info: cfl dt = 0.002288637493517075 cfl multiplier : 0.9999999982349651        [sph::Model][rank=0]
Info: Timestep 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.0314e+04 | 13440 |      1 | 2.228e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.17585770125221 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 80                                                      [SPH][rank=0]
Info: time since start : 80.63541782 (s)                                              [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.88 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.86 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.83 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.16s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.14, dt = 0.002288637493517075 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.87 us    (2.7%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 349.27 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8683035714285716
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,-1.6770396744974404e-20,7.35801157185752e-19)
    sum a = (2.9899221625325797e-18,-8.27978445009022e-18,2.1746413036304668e-17)
    sum e = 1.1963614781244123
    sum de = 1.452830911130576e-17
Info: cfl dt = 0.0022764891433853236 cfl multiplier : 0.9999999988233101       [sph::Model][rank=0]
Info: Timestep 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.0310e+04 | 13440 |      1 | 2.228e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.9715260904566 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.14228863749351708, dt = 0.0022764891433853236 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.4%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 337.21 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8633184523809527
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,8.385198372487202e-20,8.404664011566191e-19)
    sum a = (5.701934893291297e-17,-6.899820375075184e-18,3.08653162663845e-17)
    sum e = 1.196362079966568
    sum de = 7.589415207398531e-18
Info: cfl dt = 0.002371944321834541 cfl multiplier : 0.9999999992155401        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 6.0143e+04 | 13440 |      1 | 2.235e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.67366687218752 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.1445651266369024, dt = 0.002371944321834541 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.4%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 363.55 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8633928571428573
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,4.599880250050123e-19,9.21099067649197e-19)
    sum a = (3.104919168783833e-17,4.093893422544609e-17,-1.2218431914195637e-19)
    sum e = 1.1963631779773207
    sum de = -3.686287386450715e-18
Info: cfl dt = 0.002355808051284119 cfl multiplier : 0.9999999994770267        [sph::Model][rank=0]
Info: Timestep 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.0112e+04 | 13440 |      1 | 2.236e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.19154239194938 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.14693707095873695, dt = 0.002355808051284119 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (1.4%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 329.62 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8635416666666669
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.102054643241175e-19,8.809699040094367e-19)
    sum a = (3.1164188694089583e-17,1.7479544950190467e-17,1.2703575534318111e-17)
    sum e = 1.1963637725211036
    sum de = 1.691355389077387e-17
Info: cfl dt = 0.002338638753846281 cfl multiplier : 0.9999999996513512        [sph::Model][rank=0]
Info: Timestep 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.0148e+04 | 13440 |      1 | 2.234e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.954807376223975 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.14929287901002108, dt = 0.002338638753846281 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.8%)
   patch tree reduce : 1.58 us    (0.5%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 323.21 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 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: 1.880059523809524
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-3.953022089886824e-19,9.37045918125445e-19)
    sum a = (1.0158068885527354e-17,2.315273059191895e-17,-1.3526522860303641e-17)
    sum e = 1.1963642176693792
    sum de = -4.119968255444917e-17
Info: cfl dt = 0.0023486702581575897 cfl multiplier : 0.9999999997675676       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.2419e+04 | 13440 |      1 | 2.564e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.836613230504156 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.15163151776386735, dt = 0.0023486702581575897 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.5%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 349.75 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 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: 1.8718005952380958
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,9.391422177185667e-19,8.918257411881031e-19)
    sum a = (2.4954350356521914e-17,1.0579724575115282e-17,-1.886430056713264e-17)
    sum e = 1.19636463835333
    sum de = -5.345116710353537e-17
Info: cfl dt = 0.0023531476570892765 cfl multiplier : 0.9999999998450452       [sph::Model][rank=0]
Info: Timestep 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.0912e+04 | 13440 |      1 | 2.206e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.32000139519961 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.15398018802202496, dt = 0.0023531476570892765 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.6%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 325.47 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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: 1.8715773809523812
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-3.354079348994881e-20,8.124658280199207e-19)
    sum a = (3.4393687952978937e-17,2.5146012033607338e-17,-2.7330955152381145e-17)
    sum e = 1.1963648697905724
    sum de = 1.22514845490862e-17
Info: cfl dt = 0.002378029105274268 cfl multiplier : 0.9999999998966969        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9995e+04 | 13440 |      1 | 2.240e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.815528303953 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 0.15633333567911423, dt = 0.002378029105274268 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.3%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 373.41 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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: 1.8718005952380954
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,6.947735794346539e-19,7.503255186523817e-19)
    sum a = (-2.3143147508064678e-17,-7.359808400080196e-18,2.6353480599245495e-17)
    sum e = 1.1963650738978673
    sum de = 3.312237636943216e-17
Info: cfl dt = 0.0023708558449166963 cfl multiplier : 0.9999999999311312       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.3573e+04 | 13440 |      1 | 2.509e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.12463334440419 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.1587113647843885, dt = 0.001288635215611511 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (1.5%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 872.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 319.39 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8718005952380954
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-8.62477546884398e-20,8.349261808033686e-19)
    sum a = (-8.05458197951485e-18,-3.327246714202922e-17,-8.023676534084826e-17)
    sum e = 1.1963598811906424
    sum de = -5.041540102057596e-18
Info: cfl dt = 0.0023696808830296194 cfl multiplier : 0.9999999999540874       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7415e+04 | 13440 |      1 | 2.341e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.818003795499404 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 89                                                      [SPH][rank=0]
Info: time since start : 89.815436137 (s)                                             [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.86 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.82 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.82 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.18s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.16, dt = 0.0023696808830296194 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.12 us    (2.4%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 581.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 354.94 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8758184523809525
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,7.762297921959581e-19,5.845681151105364e-19)
    sum a = (2.5742559003535712e-18,2.1006119808562225e-17,-5.408452950254246e-17)
    sum e = 1.19636486849559
    sum de = -7.657177843178875e-19
Info: cfl dt = 0.002338318802647213 cfl multiplier : 0.9999999999693916        [sph::Model][rank=0]
Info: Timestep 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.0339e+04 | 13440 |      1 | 2.227e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.2992927248752 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.1623696808830296, dt = 0.002338318802647213 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.4%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 325.06 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8644345238095241
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,7.331059148517383e-19,4.664266594696006e-19)
    sum a = (7.932397660372894e-18,3.020588030866247e-17,-5.4163589944340195e-17)
    sum e = 1.196364583210433
    sum de = 3.168580849088887e-17
Info: cfl dt = 0.0023349122382256616 cfl multiplier : 0.9999999999795944       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.3881e+04 | 13440 |      1 | 2.494e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.74773937061865 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.16470799968567681, dt = 0.0023349122382256616 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.4%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 374.89 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.864285714285714
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,5.89359657037672e-19,3.3960053408573173e-19)
    sum a = (4.042623923924259e-17,-3.097252701700416e-17,2.576951142687585e-18)
    sum e = 1.1963643541390085
    sum de = 5.4752209710517974e-17
Info: cfl dt = 0.0023335694989746925 cfl multiplier : 0.9999999999863963       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9849e+04 | 13440 |      1 | 2.246e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.430776989238616 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.16704291192390247, dt = 0.0023335694989746925 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.4%)
   patch tree reduce : 1.76 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.39 us    (0.4%)
   LB compute        : 372.79 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8639136904761904
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,5.174865281306388e-19,4.111741916223189e-19)
    sum a = (-3.09916931847127e-17,-4.75320959171846e-17,-1.1986641073470456e-17)
    sum e = 1.1963640609222965
    sum de = -3.491130995403324e-17
Info: cfl dt = 0.0023322589866446824 cfl multiplier : 0.9999999999909308       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9669e+04 | 13440 |      1 | 2.252e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.297176487725224 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.16937648142287717, dt = 0.0023322589866446824 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.4%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 351.47 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.89 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: 1.8790922619047619
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,-3.6415718646230135e-19,3.8541965376396535e-19)
    sum a = (-3.443202028839602e-17,1.3339652725145356e-17,-6.166714460223446e-18)
    sum e = 1.1963636561298332
    sum de = 1.9949319973733282e-17
Info: cfl dt = 0.002331672562594376 cfl multiplier : 0.9999999999939538        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2654e+04 | 13440 |      1 | 3.151e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.646313063291732 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.17170874040952186, dt = 0.002331672562594376 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.3%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 381.34 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.879910714285714
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,5.845681151105364e-19,3.68349785648545e-19)
    sum a = (-1.030181514334142e-19,6.1331736667334966e-18,2.3905002674479232e-17)
    sum e = 1.1963631373627566
    sum de = 1.5178830414797062e-18
Info: cfl dt = 0.0023325911788819815 cfl multiplier : 0.9999999999959691       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.4181e+04 | 13440 |      1 | 2.481e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.839102029007634 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.17404041297211623, dt = 0.0023325911788819815 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.5%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 350.06 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (74.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8796130952380954
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.4853779974120188e-19,4.650790383025938e-19)
    sum a = (8.610400843062574e-18,6.1331736667334966e-18,-4.0613109374400875e-17)
    sum e = 1.1963624878517696
    sum de = 4.9873299934333204e-17
Info: cfl dt = 0.002267387981516365 cfl multiplier : 0.9999999999973127        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.3401e+04 | 13440 |      1 | 2.517e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.3652685342201 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.1763730041509982, dt = 0.002267387981516365 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.7%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 305.97 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8793898809523808
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-9.583083854271089e-21,2.9303273598138314e-19)
    sum a = (1.0891174800379092e-17,1.4719616800160393e-17,-2.3068878608194077e-17)
    sum e = 1.1963614871009884
    sum de = 4.933119884809045e-17
Info: cfl dt = 0.0022702122198114934 cfl multiplier : 0.9999999999982085       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2023e+04 | 13440 |      1 | 3.198e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 25.52225675428371 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.1786403921325146, dt = 0.0013596078674854017 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.3%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 407.36 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 6.31 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8797619047619047
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-3.0665868333667484e-19,2.796313921539259e-19)
    sum a = (-1.3569646737647861e-17,1.5332934166833742e-19,6.186359782124701e-17)
    sum e = 1.196358647313524
    sum de = -2.3093506273941244e-17
Info: cfl dt = 0.0022741350196644372 cfl multiplier : 0.9999999999988057       [sph::Model][rank=0]
Info: Timestep 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.0009e+04 | 13440 |      1 | 2.240e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.854249112232953 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 98                                                      [SPH][rank=0]
Info: time since start : 98.972834981 (s)                                             [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.82 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.83 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.85 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.20s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.18, dt = 0.0022741350196644372 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.99 us    (2.2%)
   patch tree reduce : 1.30 us    (0.3%)
   gen split merge   : 631.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 386.38 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 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: 1.8796130952380952
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.5332934166833742e-19,4.670256022104925e-19)
    sum a = (-1.8207859323115067e-19,-2.5299341375275673e-17,1.742204644706484e-17)
    sum e = 1.1963604883444545
    sum de = -2.45029690981724e-17
Info: cfl dt = 0.0022810489008999076 cfl multiplier : 0.9999999999992039       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8817e+04 | 13440 |      1 | 2.753e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.736539675486746 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.18227413501966444, dt = 0.0022810489008999076 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.81 us    (1.4%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 326.98 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8560267857142858
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-1.724955093768796e-19,4.599131571624008e-19)
    sum a = (-3.741235936707433e-17,-2.62193174252857e-17,-3.6056353001694974e-17)
    sum e = 1.1963597910233428
    sum de = -1.5287250632045613e-17
Info: cfl dt = 0.0022927864132330266 cfl multiplier : 0.9999999999994692       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9873e+04 | 13440 |      1 | 2.245e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.581924323172586 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.18455518392056436, dt = 0.0022927864132330266 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.7%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 317.77 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 23.13 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: 1.8550595238095238
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,6.229004505276207e-19,3.198354236362976e-19)
    sum a = (-2.2563370934881278e-17,-4.446550908381785e-18,-1.9309913966356244e-18)
    sum e = 1.19635933032087
    sum de = 2.7321894746634712e-17
Info: cfl dt = 0.002308951987650361 cfl multiplier : 0.9999999999996462        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7948e+04 | 13440 |      1 | 2.319e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.588219497079194 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.18684797033379738, dt = 0.002308951987650361 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.4%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 352.13 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8550595238095235
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,-9.583083854271089e-21,3.449910187537592e-19)
    sum a = (-2.0555714867411484e-18,8.187786845089218e-17,3.774297576004668e-17)
    sum e = 1.1963590929442836
    sum de = 1.723881454251952e-17
Info: cfl dt = 0.0022647495346995073 cfl multiplier : 0.9999999999997641       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9962e+04 | 13440 |      1 | 2.241e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.084847296723915 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.18915692232144773, dt = 0.0022647495346995073 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.5%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 333.18 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8694196428571426
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,5.270696119849099e-19,4.852933558076968e-19)
    sum a = (1.0951069074468286e-17,-2.4072706641928973e-17,3.335871489671766e-17)
    sum e = 1.1963590128531354
    sum de = -5.204170427930421e-17
Info: cfl dt = 0.0022813975429532246 cfl multiplier : 0.9999999999998428       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9204e+04 | 13440 |      1 | 2.731e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.848603197103895 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.19142167185614725, dt = 0.0022813975429532246 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.5%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 314.09 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8796875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,2.4916018021104833e-19,5.7872842338684e-19)
    sum a = (2.086596720719351e-17,1.2113017991798656e-17,8.242410423058563e-17)
    sum e = 1.196359249433555
    sum de = -2.5153490401663703e-17
Info: cfl dt = 0.0023032053961711337 cfl multiplier : 0.9999999999998952       [sph::Model][rank=0]
Info: Timestep 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.0181e+04 | 13440 |      1 | 2.233e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.7761060022954 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.19370306939910048, dt = 0.0023032053961711337 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.72 us    (1.3%)
   patch tree reduce : 1.34 us    (0.4%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 341.96 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8800595238095237
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,7.666467083416871e-19,8.126155637051438e-19)
    sum a = (-1.0842061495625953e-17,-8.27978445009022e-18,-2.7934689435200224e-17)
    sum e = 1.1963597003679334
    sum de = -5.2909066017292616e-17
Info: cfl dt = 0.0023319517891497313 cfl multiplier : 0.9999999999999302       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9820e+04 | 13440 |      1 | 2.247e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.90472684352268 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.1960062747952716, dt = 0.0023319517891497313 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.7%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.41 us    (0.4%)
   LB compute        : 316.19 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8797619047619047
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,7.57063624487416e-19,6.244352413011564e-19)
    sum a = (-5.199362039408868e-17,1.0273065891778608e-17,-5.160490655524981e-18)
    sum e = 1.1963603209358684
    sum de = 9.215718466126788e-19
Info: cfl dt = 0.0023667335243434547 cfl multiplier : 0.9999999999999535       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0045e+04 | 13440 |      1 | 2.686e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.25951491186629 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.19833822658442135, dt = 0.0016617734155786323 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.4%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 368.52 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 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: 1.8794642857142856
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,4.983203604220967e-19,6.287401422513172e-19)
    sum a = (3.566823810559699e-17,-5.979844325065159e-17,3.487523791665606e-17)
    sum e = 1.1963594480816977
    sum de = 1.5748036555351952e-17
Info: cfl dt = 0.0023307892037228574 cfl multiplier : 0.9999999999999689       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6885e+04 | 13440 |      1 | 2.867e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 20.869379365246782 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 107                                                     [SPH][rank=0]
Info: time since start : 108.223969659 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.87 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.87 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.85 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.22s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.19999999999999998, dt = 0.0023307892037228574 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.01 us    (2.2%)
   patch tree reduce : 1.27 us    (0.3%)
   gen split merge   : 641.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 383.08 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8796874999999997
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,1.0541392239698198e-19,7.547427213664597e-19)
    sum a = (2.0939038221582327e-18,-6.685159296739512e-17,5.627186839227983e-17)
    sum e = 1.1963612272301811
    sum de = -5.1323420340032566e-17
Info: cfl dt = 0.0023489084663178127 cfl multiplier : 0.9999999999999792       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9119e+04 | 13440 |      1 | 2.273e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.909141768710704 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.20233078920372283, dt = 0.0023489084663178127 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.4%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.3%)
   LB compute        : 324.08 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.872247023809524
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,3.6415718646230135e-19,9.177300147316798e-19)
    sum a = (-7.934793431336462e-18,-1.0733053916783619e-17,1.518200059612897e-17)
    sum e = 1.1963619121865467
    sum de = 6.5865281978494394e-18
Info: cfl dt = 0.0023824547302233627 cfl multiplier : 0.9999999999999861       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7394e+04 | 13440 |      1 | 2.342e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.11096639547337 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.20467969767004063, dt = 0.0023824547302233627 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.6%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 336.98 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8639136904761904
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,4.6957110885928335e-19,8.965611322332802e-19)
    sum a = (-1.2170516494924282e-18,-2.5299341375275673e-18,-5.0505247682972206e-17)
    sum e = 1.1963624455964534
    sum de = -6.960577947356938e-17
Info: cfl dt = 0.002419098699047534 cfl multiplier : 0.9999999999999908        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9379e+04 | 13440 |      1 | 2.263e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.893196955072035 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.207062152400264, dt = 0.002419098699047534 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.4%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 358.72 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8639136904761906
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-1.9166167708542177e-19,7.067524342524928e-19)
    sum a = (-1.188302397929615e-17,3.917564679626021e-17,-1.2485560376633444e-17)
    sum e = 1.1963628487516162
    sum de = 8.944667923005412e-18
Info: cfl dt = 0.0024024226608865373 cfl multiplier : 0.9999999999999938       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9649e+04 | 13440 |      1 | 2.253e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.65083328558743 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2094812510993115, dt = 0.0024024226608865373 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.3%)
   patch tree reduce : 1.74 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.2%)
   LB compute        : 376.15 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8713541666666664
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,3.25824851045217e-19,7.293625227211637e-19)
    sum a = (-1.4278794942863923e-18,3.396244917953674e-17,2.5653915477883705e-17)
    sum e = 1.1963628895447656
    sum de = 5.7462715141731735e-18
Info: cfl dt = 0.0023672985008429456 cfl multiplier : 0.9999999999999959       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.3279e+04 | 13440 |      1 | 2.523e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.2856563025861 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.21188367376019804, dt = 0.0023672985008429456 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.6%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 349.17 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.80 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8798363095238093
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,3.449910187537592e-19,8.343272380624767e-19)
    sum a = (-6.8902372912209125e-18,-2.2041092864823505e-17,-4.1772662520767676e-17)
    sum e = 1.196362723329123
    sum de = -5.637851296924623e-18
Info: cfl dt = 0.002368798532240056 cfl multiplier : 0.9999999999999973        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9580e+04 | 13440 |      1 | 2.256e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.779489629968886 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.21425097226104098, dt = 0.002368798532240056 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.3%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 353.43 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.80 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8703869047619048
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,4.216556895879279e-19,6.51350230719988e-19)
    sum a = (2.447519616380836e-17,-1.8514518006451744e-17,4.258962041934429e-17)
    sum e = 1.1963626055035523
    sum de = -3.252606517456513e-17
Info: cfl dt = 0.002369940516030401 cfl multiplier : 0.9999999999999982        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9785e+04 | 13440 |      1 | 2.248e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.93329563433745 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.21661977079328104, dt = 0.002369940516030401 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.5%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 344.92 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 1.8686011904761903
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,3.0665868333667484e-19,8.333165221872215e-19)
    sum a = (-4.3085545008802815e-17,1.4547121290783512e-17,2.2232754541908927e-18)
    sum e = 1.196362431018313
    sum de = -1.9949319973733282e-17
Info: cfl dt = 0.0023402498861807113 cfl multiplier : 0.9999999999999988       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.4451e+04 | 13440 |      1 | 2.468e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.56588152842887 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.21898971130931144, dt = 0.0010102886906885322 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.4%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 336.51 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8683779761904762
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,1.1499700625125307e-19,7.937488673670475e-19)
    sum a = (1.2362178172009705e-17,-1.3224655718894102e-17,2.121694765335619e-17)
    sum e = 1.1963590904526293
    sum de = 6.071532165918825e-18
Info: cfl dt = 0.0023310832188742124 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    | 6.1444e+04 | 13440 |      1 | 2.187e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.627607084638782 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 116                                                     [SPH][rank=0]
Info: time since start : 117.25708023000001 (s)                                       [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.86 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.86 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.85 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.24s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.21999999999999997, dt = 0.0023310832188742124 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.95 us    (2.6%)
   patch tree reduce : 1.30 us    (0.3%)
   gen split merge   : 570.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 842.00 ns  (0.2%)
   LB compute        : 354.86 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.872693452380952
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,3.0665868333667484e-19,8.669696174410875e-19)
    sum a = (-1.3837973085567452e-17,-1.8974506031456757e-18,1.736933948586635e-17)
    sum e = 1.1963620430734787
    sum de = -7.48099499014998e-17
Info: cfl dt = 0.002308956863108604 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    | 6.0115e+04 | 13440 |      1 | 2.236e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.53585450747632 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.22233108321887418, dt = 0.002308956863108604 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.4%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 345.49 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8754464285714285
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,1.5332934166833742e-19,8.910021949193767e-19)
    sum a = (-5.447983171153114e-18,6.928569626637997e-18,-2.4714773260165137e-17)
    sum e = 1.1963617905196857
    sum de = 2.3527187142935446e-17
Info: cfl dt = 0.002314729059828116 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9441e+04 | 13440 |      1 | 2.261e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.76226545563942 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2246400400819828, dt = 0.002314729059828116 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.3%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 396.49 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8598214285714285
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,4.791541927135544e-20,7.797485807986983e-19)
    sum a = (4.722064569192079e-17,-1.2611338352220752e-17,-2.6861384043521862e-17)
    sum e = 1.1963616132207737
    sum de = -5.9631119486702744e-18
Info: cfl dt = 0.0023720288434061565 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9006e+04 | 13440 |      1 | 2.278e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.58440317319706 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2269547691418109, dt = 0.0023720288434061565 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.73 us    (1.3%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 346.36 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8579613095238097
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,2.2999401250250614e-19,7.276405623410993e-19)
    sum a = (-7.886878012065106e-18,2.4954350356521914e-17,4.0033332801217475e-17)
    sum e = 1.1963615782887098
    sum de = -3.382710778154774e-17
Info: cfl dt = 0.0023624615635410126 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9390e+04 | 13440 |      1 | 2.263e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.7341893341017 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.22932679798521705, dt = 0.0023624615635410126 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.3%)
   patch tree reduce : 1.43 us    (0.3%)
   gen split merge   : 1.02 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 395.08 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (72.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8575892857142855
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,3.545741026080303e-19,8.959434725317353e-19)
    sum a = (-2.177755805883105e-17,1.866784734812008e-17,-6.063696308790031e-18)
    sum e = 1.1963613608264423
    sum de = 7.947201924318748e-17
Info: cfl dt = 0.0023566248850863726 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.3346e+04 | 13440 |      1 | 2.519e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.75756987119999 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.23168925954875805, dt = 0.0023566248850863726 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.4%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 380.27 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 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: 1.8741071428571427
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.9166167708542177e-19,8.329796168954698e-19)
    sum a = (-2.620973434143143e-18,-3.350246115453172e-17,2.8943309010862253e-17)
    sum e = 1.1963611546641038
    sum de = -3.870601755773251e-17
Info: cfl dt = 0.002354772945024539 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1391e+04 | 13440 |      1 | 2.615e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.439985722600746 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.23404588443384441, dt = 0.002354772945024539 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.4%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 361.53 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8741815476190475
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229113,1.5332934166833742e-19,9.313559620869715e-19)
    sum a = (-7.321476064663112e-18,4.0095622846270236e-17,-4.318856316023623e-17)
    sum e = 1.1963609595924436
    sum de = 6.505213034913027e-19
Info: cfl dt = 0.0023620306199504753 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7778e+04 | 13440 |      1 | 2.326e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.442810382552445 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.23640065737886895, dt = 0.0023620306199504753 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.5%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 372.14 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 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: 1.8746279761904763
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,1.3416317395979523e-19,7.576625672283079e-19)
    sum a = (-1.0177235053235896e-17,-7.283143729246027e-18,3.9410432350689856e-18)
    sum e = 1.1963607956713158
    sum de = 7.806255641895632e-18
Info: cfl dt = 0.0024229588215065917 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8450e+04 | 13440 |      1 | 2.299e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.98027488445862 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.23876268799881942, dt = 0.001237312001180546 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.2%)
   patch tree reduce : 1.73 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.2%)
   LB compute        : 398.55 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 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: 1.874404761904762
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,2.6832634791959046e-19,7.99438823405521e-19)
    sum a = (3.683258279389093e-17,-2.7062628804461555e-17,7.029192007107844e-18)
    sum e = 1.1963589833415809
    sum de = -2.873135757086587e-17
Info: cfl dt = 0.0024229837663664548 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.5365e+04 | 13440 |      1 | 2.428e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.349095703413184 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 125                                                     [SPH][rank=0]
Info: time since start : 126.49552704000001 (s)                                       [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.85 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.85 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.84 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.26s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.23999999999999996, dt = 0.0024229837663664548 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.10 us    (2.4%)
   patch tree reduce : 1.28 us    (0.3%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 831.00 ns  (0.2%)
   LB compute        : 354.35 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 1.874553571428571
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,5.079034442763677e-19,8.139631848721506e-19)
    sum a = (-3.9482305479596886e-18,-3.3042473129526713e-17,3.8001719024112e-17)
    sum e = 1.1963607132425318
    sum de = 3.3610267347050637e-18
Info: cfl dt = 0.002441916439473056 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.4165e+04 | 13440 |      1 | 2.481e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.15377841417335 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.24242298376636642, dt = 0.002441916439473056 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.4%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 365.28 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8746279761904756
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,2.4916018021104833e-19,9.690893547631639e-19)
    sum a = (3.7167990728790417e-17,-3.633905397539597e-17,-5.70109637345405e-17)
    sum e = 1.1963606841353989
    sum de = 2.1141942363467336e-17
Info: cfl dt = 0.0024463322651481476 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.2187e+04 | 13440 |      1 | 2.575e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.13454651425418 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.24486490020583948, dt = 0.0024463322651481476 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.4%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 350.42 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.78 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8529761904761906
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,1.4374625781406633e-19,6.968698790277758e-19)
    sum a = (-3.0814406133408685e-17,1.717288626685379e-17,-1.434887124354828e-17)
    sum e = 1.1963607046424451
    sum de = -8.239936510889834e-18
Info: cfl dt = 0.0024488749541099544 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9223e+04 | 13440 |      1 | 2.269e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.8070916317377 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.24731123247098763, dt = 0.0024488749541099544 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.6%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 1.29 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.42 us    (0.4%)
   LB compute        : 345.06 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.850818452380952
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.629124255226085e-19,6.871370594882817e-19)
    sum a = (1.8619931928848725e-17,-2.1006119808562225e-17,1.6107966073547917e-17)
    sum e = 1.196360795518727
    sum de = -3.3393426912553537e-17
Info: cfl dt = 0.0024666984269286524 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8873e+04 | 13440 |      1 | 2.283e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.61786249342263 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.24976010742509758, dt = 0.0024666984269286524 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.3%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 372.07 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8500744047619047
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-1.0541392239698198e-19,8.09471114315461e-19)
    sum a = (8.931434152180655e-18,6.102507798399829e-17,-3.9288248031547896e-17)
    sum e = 1.1963609773817183
    sum de = -2.7972416050126014e-17
Info: cfl dt = 0.0024405694879043433 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8784e+04 | 13440 |      1 | 2.286e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.84019346901173 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2522268058520262, dt = 0.0024405694879043433 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.4%)
   patch tree reduce : 1.76 us    (0.5%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 355.24 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8725446428571426
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,6.708158697989762e-19,6.070284678939843e-19)
    sum a = (-2.5308924459129946e-17,-3.0665868333667484e-19,4.644441589972483e-17)
    sum e = 1.1963611110040469
    sum de = 2.7972416050126014e-17
Info: cfl dt = 0.0024496404504118358 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1184e+04 | 13440 |      1 | 2.626e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.46042059842062 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.25466737533993056, dt = 0.0024496404504118358 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.4%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 369.52 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (73.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8739583333333334
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,2.395770963567772e-19,8.404664011566191e-19)
    sum a = (1.864868118041154e-17,-1.0733053916783619e-17,3.260644281415738e-18)
    sum e = 1.196361317248394
    sum de = -7.806255641895632e-18
Info: cfl dt = 0.002463989787874663 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.3465e+04 | 13440 |      1 | 2.514e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.08156460154839 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2571170157903424, dt = 0.002463989787874663 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.2%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.2%)
   LB compute        : 405.39 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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: 1.8742559523809526
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,2.874925156281327e-20,8.036314225917645e-19)
    sum a = (2.190692969086371e-17,1.9932814416883866e-18,-2.55724592651224e-17)
    sum e = 1.1963615182598366
    sum de = -3.0357660829594124e-18
Info: cfl dt = 0.0024812638181460943 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.5579e+04 | 13440 |      1 | 2.418e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.682054081089525 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.25958100557821706, dt = 0.00041899442178289226 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.4%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 921.00 ns  (0.2%)
   LB compute        : 354.13 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8744047619047621
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,5.749850312562653e-19,7.404429634276646e-19)
    sum a = (7.493971574039991e-18,1.9779485075215528e-17,2.8653420724270553e-17)
    sum e = 1.196358830722998
    sum de = 6.505213034913027e-19
Info: cfl dt = 0.0024853943108783484 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.5523e+04 | 13440 |      1 | 2.421e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.23134972319001 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 134                                                     [SPH][rank=0]
Info: time since start : 135.61642753 (s)                                             [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.88 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.86 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.86 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.28s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.25999999999999995, dt = 0.0024853943108783484 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.32 us    (2.3%)
   patch tree reduce : 1.40 us    (0.3%)
   gen split merge   : 602.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 388.03 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8745535714285717
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,4.4082185729647e-19,8.061769292405553e-19)
    sum a = (3.4901591397255304e-17,-2.315273059191895e-17,1.2009999840365241e-17)
    sum e = 1.1963616322350614
    sum de = -2.190088388420719e-17
Info: cfl dt = 0.002493799778354429 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9910e+04 | 13440 |      1 | 2.243e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.88367990811276 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2624853943108783, dt = 0.002493799778354429 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.3%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 351.46 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8742559523809523
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-2.874925156281327e-20,8.374716874521593e-19)
    sum a = (2.8739668478958995e-17,-2.729262281696406e-17,-2.4973516524230457e-17)
    sum e = 1.1963617806134748
    sum de = 3.686287386450715e-17
Info: cfl dt = 0.0024385754997967323 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4526e+04 | 13440 |      1 | 3.018e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.742347894137353 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.26497919408923276, dt = 0.0024385754997967323 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (1.3%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 378.88 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 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: 1.8651785714285711
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,0,7.442612234008507e-19)
    sum a = (-3.3569542741511626e-17,-1.901283836687384e-17,-2.7244707397692706e-17)
    sum e = 1.196361697591379
    sum de = 5.421010862427522e-17
Info: cfl dt = 0.002453975179176348 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9773e+04 | 13440 |      1 | 2.249e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.04302914745553 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2674177695890295, dt = 0.002453975179176348 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.4%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 346.80 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8578125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,1.9166167708542177e-19,6.596605612498638e-19)
    sum a = (3.769026879884819e-17,-3.3732455167034233e-18,2.7177625810712806e-17)
    sum e = 1.1963617720465545
    sum de = -1.496198998029996e-17
Info: cfl dt = 0.002475358766399354 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6239e+04 | 13440 |      1 | 2.907e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.393322083067197 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.26987174476820586, dt = 0.002475358766399354 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.02 us    (1.4%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 352.20 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8575148809523807
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.2458009010552416e-19,7.88957325439912e-19)
    sum a = (2.2683159483059668e-17,2.5452670716944012e-17,2.888581050773663e-17)
    sum e = 1.196361879471098
    sum de = 5.128276275856436e-17
Info: cfl dt = 0.0024766384480020996 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1147e+04 | 13440 |      1 | 2.628e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.912578823949616 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.27234710353460523, dt = 0.0024766384480020996 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.3%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 380.56 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8682291666666664
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-1.4374625781406634e-20,8.758788907118551e-19)
    sum a = (4.211765353952144e-17,1.847618567103466e-17,-1.933626744695549e-17)
    sum e = 1.1963619690642986
    sum de = 2.0383000842727483e-17
Info: cfl dt = 0.002483273394033677 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9836e+04 | 13440 |      1 | 2.246e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.694288932943905 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.27482374198260734, dt = 0.002483273394033677 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.2%)
   patch tree reduce : 1.42 us    (0.3%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 371.06 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (74.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8735863095238094
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,2.6353480599245493e-19,7.580369064413654e-19)
    sum a = (-1.8121611568426627e-17,4.446550908381785e-18,-6.481758341932608e-18)
    sum e = 1.1963620973209694
    sum de = -7.188260403578894e-17
Info: cfl dt = 0.0024991341210149113 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.4933e+04 | 13440 |      1 | 2.447e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.53917115364242 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.27730701537664104, dt = 0.0024991341210149113 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (0.8%)
   patch tree reduce : 1.60 us    (0.3%)
   gen split merge   : 811.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 578.94 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.39 us    (72.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.865997023809524
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,6.229004505276208e-20,7.667964440269101e-19)
    sum a = (-4.0555610871275245e-17,7.666467083416871e-19,-3.012442409590117e-17)
    sum e = 1.1963622583597484
    sum de = -1.3010426069826053e-17
Info: cfl dt = 0.002472160682193325 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.5538e+04 | 13440 |      1 | 2.420e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.17777114245262 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.279806149497656, dt = 0.00019385050234399515 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.4%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 368.98 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.865997023809524
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,3.593656445351658e-19,7.430633379190669e-19)
    sum a = (2.3191062927336035e-17,5.213197616723472e-18,1.1102002645173057e-17)
    sum e = 1.1963590834440425
    sum de = 2.862293735361732e-17
Info: cfl dt = 0.002472835467588105 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6947e+04 | 13440 |      1 | 2.863e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4376795369883166 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 143                                                     [SPH][rank=0]
Info: time since start : 145.070632468 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.85 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.85 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.83 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.30s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.27999999999999997, dt = 0.002472835467588105 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.91 us    (2.0%)
   patch tree reduce : 1.28 us    (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 851.00 ns  (0.2%)
   LB compute        : 431.42 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.865848214285714
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,1.9166167708542177e-19,7.609567523032136e-19)
    sum a = (3.6128226130602e-18,-1.7632874291858803e-17,9.330569594711045e-17)
    sum e = 1.1963622268691225
    sum de = 8.348356728138384e-18
Info: cfl dt = 0.0024902344098713444 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0087e+04 | 13440 |      1 | 2.237e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.79946492703984 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.28247283546758806, dt = 0.0024902344098713444 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.4%)
   patch tree reduce : 1.87 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 353.31 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8706845238095235
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,5.654019474019942e-19,1.1058729032143614e-18)
    sum a = (-1.462378596161768e-17,-3.426910786287341e-17,4.767584217499866e-19)
    sum e = 1.1963623542717852
    sum de = 1.235990476633475e-17
Info: cfl dt = 0.002488037388301505 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.4157e+04 | 13440 |      1 | 2.482e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.12402371226578 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2849630698774594, dt = 0.002488037388301505 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (1.5%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 313.88 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.869642857142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-1.9166167708542177e-20,9.881806546290945e-19)
    sum a = (3.8332335417084355e-20,6.478164685487256e-17,-2.0698263239743767e-17)
    sum e = 1.1963623072801115
    sum de = 1.6859343782149594e-17
Info: cfl dt = 0.0024605524301107677 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.3676e+04 | 13440 |      1 | 2.504e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.771944460503285 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2874511072657609, dt = 0.0024605524301107677 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (1.7%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 319.70 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 1.85922619047619
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,4.791541927135544e-20,8.970664901709077e-19)
    sum a = (1.1696153844137864e-17,1.188302397929615e-17,-2.6147444296378666e-17)
    sum e = 1.1963621057502636
    sum de = -4.553649124439119e-18
Info: cfl dt = 0.002469390596922942 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.0224e+04 | 13440 |      1 | 2.232e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.69194560812282 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2899116596958717, dt = 0.002469390596922942 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.4%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.20 us    (0.3%)
   LB compute        : 343.22 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8587797619047617
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,2.6832634791959046e-19,8.310330529875709e-19)
    sum a = (-2.2352543090087315e-17,-8.931434152180655e-18,-5.15689699907963e-17)
    sum e = 1.1963619138468666
    sum de = 6.613633252161577e-18
Info: cfl dt = 0.002456992184894072 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.5104e+04 | 13440 |      1 | 2.439e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.448157991993945 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2923810502927946, dt = 0.002456992184894072 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.6%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 340.82 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.57 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8587053571428573
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,7.666467083416871e-20,6.669227419831786e-19)
    sum a = (1.933387167599192e-17,4.684211387967708e-17,6.97744335429478e-17)
    sum e = 1.1963616210343317
    sum de = 1.1370570283941728e-17
Info: cfl dt = 0.0024552260234267805 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0196e+04 | 13440 |      1 | 2.233e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.61636830187358 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2948380424776887, dt = 0.0024552260234267805 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.5%)
   patch tree reduce : 1.55 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 325.74 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8732886904761905
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,4.360303153693346e-19,9.925978573431726e-19)
    sum a = (2.3737298707029487e-17,-1.2611338352220752e-17,-3.746985787019996e-18)
    sum e = 1.1963613345319888
    sum de = -1.2739375526704677e-17
Info: cfl dt = 0.0024604107801398565 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.2369e+04 | 13440 |      1 | 2.566e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.44033068361534 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2972932685011155, dt = 0.0024604107801398565 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.7%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 316.03 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 1.8744047619047621
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,2.9707559948240377e-19,9.00585278773648e-19)
    sum a = (2.0574881035120027e-17,8.35644912092439e-18,4.0920965943219334e-17)
    sum e = 1.1963610828670377
    sum de = 2.168404344971009e-18
Info: cfl dt = 0.0024156506637014893 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9515e+04 | 13440 |      1 | 2.258e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.22289882950124 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.29975367928125535, dt = 0.00024632071874464145 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (1.4%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 314.20 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8744047619047617
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,2.395770963567772e-19,9.681909406518258e-19)
    sum a = (-2.2204005290346113e-17,-1.7096221596019623e-17,2.514361626264377e-17)
    sum e = 1.1963590192577707
    sum de = -3.5236570605778894e-19
Info: cfl dt = 0.0024165648484479724 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0591e+04 | 13440 |      1 | 2.218e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9977203147966054 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 152                                                     [SPH][rank=0]
Info: time since start : 154.106492655 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.86 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.88 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.85 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.32s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.3, dt = 0.0024165648484479724 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.00 us    (2.3%)
   patch tree reduce : 1.33 us    (0.3%)
   gen split merge   : 571.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 365.98 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8751488095238094
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,4.791541927135544e-21,1.0142720977791999e-18)
    sum a = (-8.548110798009812e-18,-2.0546131783557215e-17,-7.090284166678822e-17)
    sum e = 1.1963608505562404
    sum de = 1.8119728807663993e-17
Info: cfl dt = 0.002418677873877673 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0124e+04 | 13440 |      1 | 2.681e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.4452753974516 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.302416564848448, dt = 0.002418677873877673 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.4%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 370.01 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8752976190476194
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,0,7.363252320840324e-19)
    sum a = (2.3095232088793324e-18,4.588380549424997e-17,1.0982214096994668e-17)
    sum e = 1.1963607091940585
    sum de = 6.911788849595091e-19
Info: cfl dt = 0.002403058272908256 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8773e+04 | 13440 |      1 | 2.287e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.07678137398253 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.30483524272232565, dt = 0.002403058272908256 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (1.2%)
   patch tree reduce : 1.74 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 385.88 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8750744047619048
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,7.187312890703316e-19,8.531565004792672e-19)
    sum a = (-5.3128616888078916e-17,1.9089503037708007e-17,1.0435499163108502e-16)
    sum e = 1.1963606371353317
    sum de = -7.047314121155779e-19
Info: cfl dt = 0.002392841673149007 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9067e+04 | 13440 |      1 | 2.275e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.02019050669184 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3072383009952339, dt = 0.002392841673149007 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.93 us    (1.3%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 358.25 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 us    (72.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8543898809523809
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,4.599880250050123e-19,1.2164527067515363e-18)
    sum a = (2.9899221625325797e-18,-1.3876305420984537e-17,-8.246243656600272e-18)
    sum e = 1.1963606325988594
    sum de = 1.6127507315721878e-17
Info: cfl dt = 0.002399108306923122 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9081e+04 | 13440 |      1 | 2.275e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.86751293214854 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.30963114266838293, dt = 0.002399108306923122 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.6%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 328.93 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8502976190476186
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,5.749850312562653e-20,1.068289246223392e-18)
    sum a = (9.966407208441932e-18,-3.5112419242049267e-17,-5.032077331877749e-17)
    sum e = 1.1963606882690925
    sum de = -3.209238430557093e-17
Info: cfl dt = 0.0024078999842634704 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6593e+04 | 13440 |      1 | 2.375e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.367419213165824 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.31203025097530607, dt = 0.0024078999842634704 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.4%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 342.32 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 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: 1.8501488095238094
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,-1.4374625781406633e-19,8.902909504145675e-19)
    sum a = (-3.1815838396180015e-18,-1.433629344598955e-17,3.8116716030363256e-18)
    sum e = 1.1963607689023366
    sum de = 2.2063514210080015e-17
Info: cfl dt = 0.002410729692780658 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9005e+04 | 13440 |      1 | 2.278e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.056377439363274 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.31443815095956956, dt = 0.002410729692780658 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.23 us    (1.4%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.16 us    (0.3%)
   LB compute        : 350.04 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.870386904761905
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,1.4374625781406634e-20,9.74751235360658e-19)
    sum a = (-1.6444571893929187e-17,1.778620363352714e-17,4.699544322134542e-17)
    sum e = 1.1963608473271419
    sum de = 4.323256162785949e-18
Info: cfl dt = 0.002428572963633682 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.5231e+04 | 13440 |      1 | 2.433e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.664056811781144 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.31684888065235023, dt = 0.002428572963633682 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.5%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 332.66 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8750000000000002
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-1.8207859323115067e-19,1.1424832782513814e-18)
    sum a = (-4.162891626295361e-17,-3.311913780036088e-17,-1.502148394156993e-17)
    sum e = 1.196360943876492
    sum de = -9.039535613097893e-18
Info: cfl dt = 0.002377968802553499 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6978e+04 | 13440 |      1 | 2.359e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.064999256234806 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3192774536159839, dt = 0.0007225463840160873 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.4%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 341.41 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,1.9166167708542177e-19,1.0622436679325138e-18)
    sum a = (1.8016197646029646e-17,-7.666467083416871e-19,-1.4750761822686773e-17)
    sum e = 1.1963593514756743
    sum de = -9.486769009248164e-18
Info: cfl dt = 0.0023836948386717596 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.1614e+04 | 13440 |      1 | 2.181e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.924635541401551 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 161                                                     [SPH][rank=0]
Info: time since start : 163.358192408 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.88 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.87 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.86 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.34s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.32, dt = 0.0023836948386717596 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.25 us    (2.3%)
   patch tree reduce : 1.30 us    (0.3%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 372.51 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8744791666666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-2.156193867210995e-19,1.0215717124338204e-18)
    sum a = (2.069946112522555e-18,-1.8629515012702998e-17,-5.821723441469687e-19)
    sum e = 1.1963609163871833
    sum de = 1.9873087008480395e-17
Info: cfl dt = 0.0023963465294955704 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.3509e+04 | 13440 |      1 | 2.512e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.164726848602264 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.32238369483867174, dt = 0.0023963465294955704 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.7%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.34 us    (0.4%)
   LB compute        : 336.50 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.99 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8744791666666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.126012352876853e-19,1.027523705921434e-18)
    sum a = (4.638212585467207e-17,-2.0622796454391382e-17,1.7580167330660312e-17)
    sum e = 1.1963610142239025
    sum de = 2.987654611555368e-17
Info: cfl dt = 0.002416264192067409 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.5379e+04 | 13440 |      1 | 2.427e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.54629768602018 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3247800413681673, dt = 0.002416264192067409 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.6%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 368.33 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8743303571428571
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,4.551964830778767e-20,1.0915357113542605e-18)
    sum a = (4.1609750095245064e-17,8.40244792342489e-17,-5.009557084820211e-18)
    sum e = 1.1963610969398086
    sum de = -4.784042086092288e-18
Info: cfl dt = 0.0024393805922127273 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9787e+04 | 13440 |      1 | 2.248e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.69478357853596 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3271963055602347, dt = 0.0024393805922127273 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.5%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 325.78 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8655505952380953
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,1.629124255226085e-19,1.0542140918124312e-18)
    sum a = (2.4360199157557108e-17,-3.020588030866247e-17,2.84713421310394e-17)
    sum e = 1.1963611830543495
    sum de = 2.6183482465524932e-17
Info: cfl dt = 0.002437341812669415 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.2770e+04 | 13440 |      1 | 2.547e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.48014650325478 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3296356861524474, dt = 0.002437341812669415 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.7%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 319.35 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8588541666666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,4.0967683477008905e-19,1.177072221537891e-18)
    sum a = (-1.7115387763728166e-17,3.2812479117024205e-17,-5.2290097050830196e-17)
    sum e = 1.1963612219888529
    sum de = -2.0681156440160997e-17
Info: cfl dt = 0.0024267983158224385 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.2935e+04 | 13440 |      1 | 2.539e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.559370467753546 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.33207302796511684, dt = 0.0024267983158224385 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.7%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 339.66 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8581845238095238
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229103,3.018671414095393e-19,9.689396190779409e-19)
    sum a = (-1.6923726086642743e-17,2.844259287947659e-17,1.946563907898815e-17)
    sum e = 1.1963612295253967
    sum de = 2.0057740190981832e-18
Info: cfl dt = 0.0024397619183437994 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6101e+04 | 13440 |      1 | 2.396e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.467840367469606 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.33449982628093927, dt = 0.0024397619183437994 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.5%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 324.16 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.84 us    (64.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8619791666666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,2.3718132539320947e-19,1.0751770877436493e-18)
    sum a = (1.5582094347044792e-17,2.6985964133627386e-17,1.5167625970347565e-17)
    sum e = 1.1963612508815464
    sum de = -2.222614453595284e-18
Info: cfl dt = 0.002458420802525946 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.3246e+04 | 13440 |      1 | 2.524e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.796659289962314 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.33693958819928305, dt = 0.002458420802525946 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.5%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 334.54 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.872693452380952
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,6.971693503982217e-19,1.0957657444618099e-18)
    sum a = (1.84953518387432e-17,1.9089503037708007e-17,-3.33036121645556e-17)
    sum e = 1.1963612540359856
    sum de = 7.589415207398531e-18
Info: cfl dt = 0.0024807989318540156 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9929e+04 | 13440 |      1 | 2.243e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.463873191281344 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.339398009001809, dt = 0.0006019909981910265 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.5%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 371.88 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 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: 1.8679315476190481
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,5.031119023492321e-19,1.0226198622303813e-18)
    sum a = (2.800177102218012e-17,-2.7752610841969073e-17,5.383776509329498e-17)
    sum e = 1.196359464026562
    sum de = -1.0028870095490916e-17
Info: cfl dt = 0.0024863808070178907 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.1140e+04 | 13440 |      1 | 2.198e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.858655569282687 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 170                                                     [SPH][rank=0]
Info: time since start : 172.49022656900001 (s)                                       [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.87 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.89 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.86 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.36s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.34, dt = 0.0024863808070178907 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.53 us    (2.4%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.2%)
   LB compute        : 367.40 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.865699404761905
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,4.755605362682027e-19,1.182986781104199e-18)
    sum a = (-3.8696492603546655e-17,-8.89310181676357e-18,-1.2024374466146649e-17)
    sum e = 1.1963612274164337
    sum de = 1.6263032587282567e-18
Info: cfl dt = 0.002477366562436926 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.0028e+04 | 13440 |      1 | 2.239e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.9781132417723 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.34248638080701793, dt = 0.002477366562436926 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.5%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 351.26 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8658482142857142
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,9.307570193460794e-19,1.077423123021994e-18)
    sum a = (-1.7594541956441718e-17,-4.0708940212943584e-17,1.3449858189469474e-17)
    sum e = 1.1963611339963776
    sum de = -2.8189256484623115e-18
Info: cfl dt = 0.00245846844757421 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.3898e+04 | 13440 |      1 | 2.494e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.76581280171433 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.34496374736945484, dt = 0.00245846844757421 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (1.5%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 316.07 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.867708333333333
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,8.8164371459294e-19,1.1444298421592802e-18)
    sum a = (1.909908612156228e-17,-4.201223961712445e-17,-3.237884457261844e-17)
    sum e = 1.196361019394989
    sum de = 1.3986208025063007e-17
Info: cfl dt = 0.00244924547012866 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8411e+04 | 13440 |      1 | 2.301e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.46474045311936 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.34742221581702903, dt = 0.00244924547012866 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.5%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 312.64 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.95 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8678571428571427
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,5.234759555395582e-19,1.0137854568022252e-18)
    sum a = (-1.4384208865260904e-17,2.821259886697408e-17,-6.750324266948555e-17)
    sum e = 1.1963609326232751
    sum de = 8.456776945386935e-18
Info: cfl dt = 0.002447985260739115 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.0359e+04 | 13440 |      1 | 2.227e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.59866120350797 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3498714612871577, dt = 0.002447985260739115 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (1.3%)
   patch tree reduce : 1.33 us    (0.3%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 363.13 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8581845238095236
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,1.5812088359547295e-19,7.976419951828452e-19)
    sum a = (-1.821744240696934e-17,3.319580247119505e-17,5.111676822142288e-18)
    sum e = 1.1963608836617379
    sum de = -1.2034644114589099e-17
Info: cfl dt = 0.0024918669146929426 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.5069e+04 | 13440 |      1 | 2.441e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.108992741149855 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3523194465478968, dt = 0.0024918669146929426 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.6%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 347.10 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (66.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8575148809523805
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-2.335876689478578e-19,8.98638714865749e-19)
    sum a = (1.8064113065301003e-17,-2.384271262942647e-17,-8.525590550952275e-17)
    sum e = 1.1963609267889377
    sum de = 6.5052130349130266e-18
Info: cfl dt = 0.00247842355929617 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.0288e+04 | 13440 |      1 | 2.229e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.240318536386546 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.35481131346258976, dt = 0.00247842355929617 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.6%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 1.40 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 363.13 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.07 us    (73.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8586309523809526
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-1.736933948586635e-20,5.755091061545457e-19)
    sum a = (-1.4374625781406634e-17,-5.711517977145569e-18,9.54954306078114e-18)
    sum e = 1.1963609390887988
    sum de = -6.505213034913027e-19
Info: cfl dt = 0.0024720674467772798 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0433e+04 | 13440 |      1 | 2.224e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.11945798537818 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.35728973702188593, dt = 0.0024720674467772798 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.6%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 712.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 313.13 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8738839285714284
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,4.132704912154407e-19,7.107204299109019e-19)
    sum a = (-2.986088928990871e-17,-1.410629943348704e-17,1.9197312731068557e-17)
    sum e = 1.1963609886432107
    sum de = 1.2793585635328952e-17
Info: cfl dt = 0.0024690370917706643 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7974e+04 | 13440 |      1 | 2.318e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.38843692904579 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.35976180446866324, dt = 0.0002381955313368045 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.4%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 342.91 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8741815476190475
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.5949845189952443e-18,7.284641086098257e-19)
    sum a = (-2.165776951065266e-18,-7.896461095919377e-17,-9.2105414694363e-18)
    sum e = 1.1963594569454228
    sum de = -2.3635607360183997e-17
Info: cfl dt = 0.002468268144170938 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.1998e+04 | 13440 |      1 | 2.168e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.955603618425276 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 179                                                     [SPH][rank=0]
Info: time since start : 181.687854211 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.90 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.90 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.89 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.38s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.36000000000000004, dt = 0.002468268144170938 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.34 us    (2.2%)
   patch tree reduce : 1.26 us    (0.3%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 402.76 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.875892857142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,-7.091482052160606e-19,7.007630068435734e-19)
    sum a = (1.1505690052534226e-17,-3.6837374335818064e-17,5.787703493787023e-17)
    sum e = 1.196361015203056
    sum de = -1.431146867680866e-17
Info: cfl dt = 0.0024738791850359887 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6781e+04 | 13440 |      1 | 2.367e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.54057626870664 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.362468268144171, dt = 0.0024738791850359887 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.48 us    (1.5%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 345.75 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8764880952380953
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-1.9705216175344925e-19,9.21099067649197e-19)
    sum a = (-2.848571675682081e-17,6.669826362572678e-18,-1.0126923863000974e-17)
    sum e = 1.1963611063042316
    sum de = -1.6046192152785466e-17
Info: cfl dt = 0.002478350088569283 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6649e+04 | 13440 |      1 | 2.373e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.53797174466062 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.364942147329207, dt = 0.002478350088569283 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.3%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 360.90 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.877380952380952
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,4.6957110885928335e-19,8.1755684131750225e-19)
    sum a = (-7.181083886198041e-17,-1.3282154222019729e-17,-1.7822140197980658e-17)
    sum e = 1.1963611428982746
    sum de = -2.5370330836160804e-17
Info: cfl dt = 0.0024877516507984636 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.1205e+04 | 13440 |      1 | 2.196e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.63032518061642 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.36742049741777627, dt = 0.0024877516507984636 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.5%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 360.93 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 1.8735863095238097
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,6.193816619248806e-19,7.646627105124826e-19)
    sum a = (-2.7838858596657515e-17,6.711991931531471e-17,6.4470196629608745e-18)
    sum e = 1.1963611458923107
    sum de = -2.1033522146218786e-17
Info: cfl dt = 0.0024767783150275212 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8403e+04 | 13440 |      1 | 2.301e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.91774871597552 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3699082490685747, dt = 0.0024767783150275212 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.4%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 342.96 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8572172619047618
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,4.662769237843777e-19,8.055779864996634e-19)
    sum a = (1.858159959343164e-17,3.7719018050411005e-17,-1.922845775359494e-17)
    sum e = 1.1963610799270972
    sum de = 4.90059381963448e-17
Info: cfl dt = 0.0024713774707146256 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1785e+04 | 13440 |      1 | 2.595e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.35538487982509 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.37238502738360224, dt = 0.0024713774707146256 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.6%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 318.71 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.99 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8568452380952376
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,7.816202768639857e-19,7.36549835611867e-19)
    sum a = (1.7584958872587448e-17,4.4484675251526395e-17,1.8143173507098738e-17)
    sum e = 1.196360991476715
    sum de = 1.6479873021779667e-17
Info: cfl dt = 0.002476126783251731 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.0963e+04 | 13440 |      1 | 2.205e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.35627362705357 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.37485640485431687, dt = 0.002476126783251731 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.98 us    (1.5%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.17 us    (0.3%)
   LB compute        : 319.26 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8566964285714285
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,6.363766621976895e-20,8.239206079394792e-19)
    sum a = (5.476732422715927e-18,-1.9530324895004478e-17,5.550043014201101e-17)
    sum e = 1.1963609041565517
    sum de = -9.324138683375338e-18
Info: cfl dt = 0.0024834787082119152 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0971e+04 | 13440 |      1 | 2.204e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.43920812051101 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3773325316375686, dt = 0.0024834787082119152 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.7%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 349.23 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 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: 1.8654017857142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,-6.597354290924753e-19,9.994482649421243e-19)
    sum a = (-1.7220801686125147e-17,-3.4518268043084464e-17,-9.894534079534899e-18)
    sum e = 1.1963608281719864
    sum de = -1.6046192152785466e-17
Info: cfl dt = 0.00252273206065239 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.2437e+04 | 13440 |      1 | 2.563e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.88178282186606 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3798160103457805, dt = 0.00018398965421956293 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.5%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 353.64 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.867857142857143
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,8.886812917984205e-19,9.230456315570957e-19)
    sum a = (4.547173288851632e-17,2.1427775498150153e-17,-2.1027681747234336e-17)
    sum e = 1.1963595067528716
    sum de = -1.5178830414797062e-17
Info: cfl dt = 0.002522232240535449 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.1696e+04 | 13440 |      1 | 2.178e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.040575163697983 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 188                                                     [SPH][rank=0]
Info: time since start : 190.84412197900002 (s)                                       [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.89 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.88 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.87 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.40s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.38000000000000006, dt = 0.002522232240535449 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.07 us    (2.2%)
   patch tree reduce : 1.31 us    (0.3%)
   gen split merge   : 601.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 389.13 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8782738095238094
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,3.848207110230734e-20,8.488515995291063e-19)
    sum a = (-3.555324109934574e-17,-1.671289824184878e-17,3.79645845741767e-17)
    sum e = 1.1963608159740013
    sum de = -2.0816681711721685e-17
Info: cfl dt = 0.0025196695333797956 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0847e+04 | 13440 |      1 | 2.209e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.107870017610644 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3825222322405355, dt = 0.0025196695333797956 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.4%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 332.51 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8784226190476192
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,6.848910242099369e-19,1.0301066464915305e-18)
    sum a = (-4.5280071211430894e-17,4.887372765678255e-18,3.144209812586344e-17)
    sum e = 1.1963607916615084
    sum de = -3.7947076036992655e-17
Info: cfl dt = 0.002515717453237713 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.0150e+04 | 13440 |      1 | 2.234e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.59587214709749 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3850419017739153, dt = 0.002515717453237713 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.3%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 393.13 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8785714285714286
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,1.6321189689305449e-19,1.0929956342851845e-18)
    sum a = (-1.5749798314494533e-17,9.027264990723365e-18,-3.315747013577797e-17)
    sum e = 1.1963608031363961
    sum de = 9.974659986866641e-18
Info: cfl dt = 0.0025176537476179726 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9645e+04 | 13440 |      1 | 2.253e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.191895927190565 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.387557619227153, dt = 0.0025176537476179726 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.4%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 372.40 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8732142857142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,5.091013297581516e-19,9.258906095763325e-19)
    sum a = (-1.3382776602489575e-17,-1.0282648975632879e-17,1.0778573565091407e-17)
    sum e = 1.1963608476882817
    sum de = 3.903127820947816e-18
Info: cfl dt = 0.0025243275537023555 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0156e+04 | 13440 |      1 | 2.234e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.567516360145646 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.39007527297477096, dt = 0.0025243275537023555 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.3%)
   patch tree reduce : 1.37 us    (0.3%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 360.17 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.74 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8629464285714286
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-2.1172625890530188e-19,1.0014322627713287e-18)
    sum a = (-1.555454298096376e-17,-4.1590583927536525e-17,9.401005261039938e-18)
    sum e = 1.1963609101335069
    sum de = 2.0599841277224584e-17
Info: cfl dt = 0.0025329305812078393 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0173e+04 | 13440 |      1 | 2.234e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.68633009079493 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3925996005284733, dt = 0.0025329305812078393 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (1.5%)
   patch tree reduce : 1.91 us    (0.6%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.33 us    (0.4%)
   LB compute        : 319.27 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8631696428571427
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,5.165881140193009e-19,1.0170796418771308e-18)
    sum a = (-1.601333312048699e-17,-2.4896851853396287e-17,-2.3468972359109898e-17)
    sum e = 1.1963609767239824
    sum de = 2.7972416050126014e-17
Info: cfl dt = 0.0025491137219418735 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9354e+04 | 13440 |      1 | 2.264e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.2691949088068 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.39513253110968116, dt = 0.0025491137219418735 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.91 us    (1.4%)
   patch tree reduce : 1.84 us    (0.5%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 342.18 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8633184523809523
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,-1.1308038948039885e-18,9.394416890890127e-19)
    sum a = (-5.555792864513663e-17,-2.5275383665639998e-17,5.70768474360386e-17)
    sum e = 1.1963610477078104
    sum de = -5.074066167232161e-17
Info: cfl dt = 0.0025524262198320454 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0456e+04 | 13440 |      1 | 2.223e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.27944706807096 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.39768164483162305, dt = 0.0023183551683770287 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.5%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 333.45 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.862202380952381
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-4.860420342338118e-19,1.1803664066127968e-18)
    sum a = (3.25010288917604e-17,-1.8246191658532154e-17,2.054134024163008e-17)
    sum e = 1.196360846595587
    sum de = 8.977193988179977e-17
Info: cfl dt = 0.0025469566819429504 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.5313e+04 | 13440 |      1 | 2.430e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.34894774005109 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 196                                                     [SPH][rank=0]
Info: time since start : 199.83233430800001 (s)                                       [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.88 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.87 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.89 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.42s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.4000000000000001, dt = 0.0025469566819429504 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.18 us    (2.5%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 592.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 345.93 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8659970238095236
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-8.301346388762331e-19,1.1716817368698635e-18)
    sum a = (-1.8533684174160286e-17,-2.444165537031841e-17,-1.5308976457198063e-17)
    sum e = 1.196361127759489
    sum de = -1.4094628242311558e-17
Info: cfl dt = 0.0025433241224393616 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7961e+04 | 13440 |      1 | 2.319e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.54186859791155 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.402546956681943, dt = 0.0025433241224393616 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.5%)
   patch tree reduce : 1.33 us    (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 316.90 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (64.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8710565476190477
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-1.1320017802857723e-19,1.0959903479896442e-18)
    sum a = (5.3694018835480907e-17,4.3967188723395756e-17,-5.318132384927741e-17)
    sum e = 1.1963611783830017
    sum de = 8.673617379884035e-19
Info: cfl dt = 0.0025570640184367508 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9975e+04 | 13440 |      1 | 2.241e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.85806295194354 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.40509028080438236, dt = 0.0025570640184367508 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.7%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 326.91 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.96 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.872098214285714
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,1.4254837233228245e-19,9.093448163591925e-19)
    sum a = (1.452795512307497e-17,-6.11879904095209e-17,1.5385641128032232e-17)
    sum e = 1.196361252554859
    sum de = 3.0791341698588326e-17
Info: cfl dt = 0.0025575562129679518 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.1352e+04 | 13440 |      1 | 2.191e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.02165855401567 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4076473448228191, dt = 0.0025575562129679518 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.6%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 321.86 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8600446428571433
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-4.483086415576193e-19,1.0343741135203855e-18)
    sum a = (-7.187312890703317e-18,9.6789146928138e-18,5.684924919449967e-17)
    sum e = 1.1963613206997687
    sum de = -2.1250362580715887e-17
Info: cfl dt = 0.002577293801357148 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7664e+04 | 13440 |      1 | 2.331e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.50317454118975 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.41020490103578705, dt = 0.002577293801357148 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.6%)
   patch tree reduce : 1.57 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 311.91 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.858407738095238
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-9.942449498806255e-20,1.231725746644281e-18)
    sum a = (-2.173443418148683e-17,-3.0934194681587075e-17,3.7047004295130246e-17)
    sum e = 1.1963614177074233
    sum de = -1.6588293239028218e-17
Info: cfl dt = 0.002606187275931383 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.2185e+04 | 13440 |      1 | 2.161e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.92890522462161 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4127821948371442, dt = 0.002606187275931383 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.5%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.30 us    (0.4%)
   LB compute        : 341.16 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.863318452380952
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-5.655516830872172e-19,1.3019517830138612e-18)
    sum a = (-2.368938328775813e-17,1.3301320389728271e-17,-1.0671961757212641e-17)
    sum e = 1.1963615296562475
    sum de = -1.8648277366750676e-17
Info: cfl dt = 0.0026435101909230603 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0723e+04 | 13440 |      1 | 2.213e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.3898555417583 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.41538838211307555, dt = 0.0026435101909230603 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.4%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 367.37 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (65.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.863764880952381
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-4.0106703286976736e-19,1.2020780809701298e-18)
    sum a = (-2.838509437635097e-17,-3.806400906916477e-17,-1.9163472466208163e-17)
    sum e = 1.1963616523342289
    sum de = 9.64939933512099e-18
Info: cfl dt = 0.0026421217933517292 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.1167e+04 | 13440 |      1 | 2.197e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.311581326940455 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4180318923039986, dt = 0.0019681076960014754 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.3%)
   patch tree reduce : 1.86 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 414.84 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (71.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.863616071428571
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,2.0551222796854795e-19,1.1644944239791602e-18)
    sum a = (1.3377985060562439e-17,-4.2932215667134474e-18,-1.7068071287197702e-17)
    sum e = 1.196360886486325
    sum de = 1.463672932855431e-17
Info: cfl dt = 0.0026436385938106593 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.1825e+04 | 13440 |      1 | 2.174e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.592271142504146 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 204                                                     [SPH][rank=0]
Info: time since start : 208.64031613900002 (s)                                       [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.86 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.87 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.85 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.44s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.4200000000000001, dt = 0.0026436385938106593 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.60 us    (2.5%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 470.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 359.25 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 1.8623511904761898
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-3.531516135984119e-19,1.125113938765515e-18)
    sum a = (1.3052160209517223e-17,-5.5236895336018554e-17,3.578083934088468e-18)
    sum e = 1.1963617366915014
    sum de = -3.686287386450715e-17
Info: cfl dt = 0.00264101629467724 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 6.0822e+04 | 13440 |      1 | 2.210e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.068826771097925 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.42264363859381077, dt = 0.00264101629467724 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.4%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 362.97 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8750744047619048
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-3.9679956584091226e-19,1.157157375403234e-18)
    sum a = (-5.125991553649605e-17,1.7441212614773382e-17,1.1056482996865268e-18)
    sum e = 1.1963617952279293
    sum de = -1.1817803680091998e-17
Info: cfl dt = 0.00263091470374757 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.4606e+04 | 13440 |      1 | 2.461e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.62942487736297 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.425284654888488, dt = 0.00263091470374757 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.4%)
   patch tree reduce : 1.97 us    (0.5%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.11 us    (0.3%)
   LB compute        : 361.69 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8776785714285715
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,7.636519946372274e-20,1.1538631903283283e-18)
    sum a = (-4.4867998605697236e-17,2.2232754541908927e-18,5.392880438991055e-18)
    sum e = 1.1963618217203373
    sum de = -2.981555974335137e-17
Info: cfl dt = 0.0026212525903669863 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.1510e+04 | 13440 |      1 | 2.185e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.34657488893213 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.42791556959223553, dt = 0.0026212525903669863 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.6%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 316.88 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 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: 1.860565476190476
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-6.827947246168151e-20,1.1802166709275738e-18)
    sum a = (3.4362542930452557e-17,-2.3382724604421455e-18,-1.3742142247024742e-17)
    sum e = 1.1963618385066457
    sum de = 2.1575623232461538e-17
Info: cfl dt = 0.002620616988116301 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.2178e+04 | 13440 |      1 | 2.576e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.63512405720854 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.43053682218260253, dt = 0.002620616988116301 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.4%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 345.83 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.78 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.854315476190476
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-2.10228902053072e-19,1.1182260972452577e-18)
    sum a = (-2.5181948598060854e-17,1.7747871298110057e-17,3.0143590263609707e-17)
    sum e = 1.1963618523190425
    sum de = -1.8648277366750676e-17
Info: cfl dt = 0.002628810942882098 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8355e+04 | 13440 |      1 | 2.303e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.962321744237954 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4331574391707188, dt = 0.002628810942882098 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.7%)
   patch tree reduce : 1.53 us    (0.5%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 315.49 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (61.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8531994047619045
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-3.8571912513441133e-19,1.2555337205947357e-18)
    sum a = (4.29082579574988e-18,1.866784734812008e-17,7.00044275554503e-18)
    sum e = 1.1963618536376153
    sum de = -3.892285799222961e-17
Info: cfl dt = 0.0026378750037212065 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.1967e+04 | 13440 |      1 | 2.169e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.6335046811049 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.4357862501136009, dt = 0.0026378750037212065 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.4%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 376.01 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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: 1.8528273809523812
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,-1.8207859323115067e-19,1.235993213673136e-18)
    sum a = (1.1446993663926815e-17,-2.3804380294009384e-17,1.2745501526180548e-17)
    sum e = 1.19636182104319
    sum de = -8.673617379884035e-19
Info: cfl dt = 0.0026130136565135006 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0429e+04 | 13440 |      1 | 2.224e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.69730542856285 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4384241251173221, dt = 0.001575874882678019 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.8%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 316.60 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.853199404761905
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-1.9166167708542177e-20,1.2714057032283721e-18)
    sum a = (-1.2113017991798656e-17,1.970282040438136e-17,-3.95853236310303e-17)
    sum e = 1.1963605835314575
    sum de = -1.3010426069826053e-18
Info: cfl dt = 0.0026187808488062764 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.4851e+04 | 13440 |      1 | 2.450e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 23.153049016140194 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 212                                                     [SPH][rank=0]
Info: time since start : 217.64872809800002 (s)                                       [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.86 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.89 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.85 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.46s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.4400000000000001, dt = 0.0026187808488062764 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.33 us    (2.5%)
   patch tree reduce : 1.25 us    (0.3%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 861.00 ns  (0.2%)
   LB compute        : 346.64 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8534226190476193
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,-1.5931876907725685e-19,1.1268358991455793e-18)
    sum a = (2.5299341375275673e-17,3.25824851045217e-18,-5.478169885294068e-17)
    sum e = 1.1963616438081632
    sum de = 2.42861286636753e-17
Info: cfl dt = 0.0026145385497144337 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4589e+04 | 13440 |      1 | 3.014e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.277220210762206 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4426187808488064, dt = 0.0026145385497144337 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.6%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.21 us    (0.4%)
   LB compute        : 321.36 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8720982142857143
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,2.2759824153893834e-20,9.648218877343087e-19)
    sum a = (1.6588318151743253e-17,-3.4882425229546765e-18,1.861514038692159e-18)
    sum e = 1.1963614746744196
    sum de = 1.6371452804531117e-17
Info: cfl dt = 0.00260927813726553 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.1708e+04 | 13440 |      1 | 2.178e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.21554456853996 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.44523331939852084, dt = 0.00260927813726553 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.4%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 344.06 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.877157738095238
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-3.390015913448398e-19,1.0410373515128086e-18)
    sum a = (-2.809760186072283e-17,-1.8782844354371334e-18,2.3241374117570958e-17)
    sum e = 1.196361274118058
    sum de = 9.432558900623889e-18
Info: cfl dt = 0.0026152051309846366 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.1268e+04 | 13440 |      1 | 2.194e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.821053058305765 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.44784259753578637, dt = 0.0026152051309846366 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.4%)
   patch tree reduce : 1.35 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 358.47 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 1.8762648809523812
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,-5.522252071023715e-19,1.1274348418864713e-18)
    sum a = (-1.6693732074140238e-17,5.399109443496331e-17,2.2556183621990576e-18)
    sum e = 1.1963610652203427
    sum de = -2.1467203015212988e-17
Info: cfl dt = 0.002618295783310387 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 6.0159e+04 | 13440 |      1 | 2.234e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.14156326457004 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.450457802666771, dt = 0.002618295783310387 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.6%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 831.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 911.00 ns  (0.3%)
   LB compute        : 314.20 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8651785714285718
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,-1.0421603691519809e-19,1.1102901059284394e-18)
    sum a = (1.20651025725273e-17,-2.1523606336692865e-17,2.909783623801238e-17)
    sum e = 1.196360849645145
    sum de = 6.830473686658678e-18
Info: cfl dt = 0.0025961739576275643 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.4409e+04 | 13440 |      1 | 2.470e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.15841488658027 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4530760984500814, dt = 0.0025961739576275643 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.4%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 341.52 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.864136904761905
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-1.2338220462374027e-19,1.220196098882111e-18)
    sum a = (3.3234134806612137e-17,-3.510044038723143e-17,6.140600556720557e-17)
    sum e = 1.196360635823839
    sum de = -4.9873299934333204e-18
Info: cfl dt = 0.0025923738827887404 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.4084e+04 | 13440 |      1 | 2.485e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.609964975971316 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.45567227240770897, dt = 0.0025923738827887404 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.4%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 343.64 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8645089285714285
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-3.006692559277554e-19,1.414627886144158e-18)
    sum a = (-2.9132574916984108e-18,-2.905591024614994e-17,6.848311299358477e-17)
    sum e = 1.1963604758944064
    sum de = -2.1250362580715887e-17
Info: cfl dt = 0.0025885473533037934 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.5551e+04 | 13440 |      1 | 2.419e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.57350343589113 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.45826464629049773, dt = 0.0017353537095023963 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.87 us    (1.4%)
   patch tree reduce : 1.59 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 334.19 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.863913690476191
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,1.9166167708542177e-20,1.5538072055589232e-18)
    sum a = (-1.9194916960104992e-17,-1.6885393751225658e-17,-1.863430655463013e-17)
    sum e = 1.1963600404155292
    sum de = -2.168404344971009e-18
Info: cfl dt = 0.002578020412387697 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.0841e+04 | 13440 |      1 | 2.209e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.280347473028506 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 220                                                     [SPH][rank=0]
Info: time since start : 226.56320593900003 (s)                                       [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.91 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.92 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.90 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.48s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.46000000000000013, dt = 0.002578020412387697 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.70 us    (2.3%)
   patch tree reduce : 1.36 us    (0.3%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 397.86 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8638392857142858
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,-6.061300537826464e-19,1.4300506617221256e-18)
    sum a = (-4.9046223166159433e-17,-9.23809283551733e-18,2.5694643584264356e-18)
    sum e = 1.1963603228150723
    sum de = 1.1384122811097797e-17
Info: cfl dt = 0.0025832222007187737 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.2792e+04 | 13440 |      1 | 2.546e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.45499163427142 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4625780204123878, dt = 0.0025832222007187737 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.3%)
   patch tree reduce : 1.38 us    (0.3%)
   gen split merge   : 962.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 384.08 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (66.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8704613095238094
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-5.426421232481004e-19,1.4571902546687916e-18)
    sum a = (-2.3143147508064678e-17,2.3919377300260638e-17,-2.9111012978312e-17)
    sum e = 1.19636029514612
    sum de = 4.206704429243757e-17
Info: cfl dt = 0.002589778059885711 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9605e+04 | 13440 |      1 | 2.255e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.242477508977686 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4651612426131066, dt = 0.002589778059885711 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.3%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 374.23 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8716517857142854
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,-3.0785656881845873e-19,1.349530296993465e-18)
    sum a = (-1.1815942392316253e-17,4.496382944423995e-17,-4.077602179992348e-17)
    sum e = 1.196360316840605
    sum de = -4.9873299934333204e-18
Info: cfl dt = 0.0025762086731901794 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6892e+04 | 13440 |      1 | 2.362e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.46542997096401 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4677510206729923, dt = 0.0025762086731901794 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.3%)
   patch tree reduce : 1.33 us    (0.3%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 378.76 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (65.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8712053571428575
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,4.2644723151506344e-19,1.2231159447439592e-18)
    sum a = (2.966443607089616e-17,2.4072706641928973e-17,5.392820544716966e-17)
    sum e = 1.1963603649149193
    sum de = 2.6237692574149207e-17
Info: cfl dt = 0.002581014433250938 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.4372e+04 | 13440 |      1 | 2.472e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.52003355348775 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4703272293461825, dt = 0.002581014433250938 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.6%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 312.96 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8734374999999999
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,4.551964830778767e-19,1.4827576229206166e-18)
    sum a = (5.0795135969563906e-17,3.5495742596220113e-17,1.724955093768796e-19)
    sum e = 1.1963604439855833
    sum de = -3.707971429900425e-17
Info: cfl dt = 0.002581989160156594 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9607e+04 | 13440 |      1 | 2.255e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.208619209781986 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4729082437794334, dt = 0.002581989160156594 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.6%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 334.88 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8667410714285717
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,6.19905736823161e-19,1.4119326438101443e-18)
    sum a = (2.5404755297672655e-17,3.150917971284334e-17,-4.8510768355802035e-17)
    sum e = 1.1963605392308874
    sum de = -7.979727989493313e-17
Info: cfl dt = 0.002558892125537261 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.4361e+04 | 13440 |      1 | 2.472e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.59640738659472 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.47549023293959003, dt = 0.002558892125537261 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.5%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 340.10 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8651041666666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-8.385198372487202e-20,1.2255491496288326e-18)
    sum a = (1.4853779974120187e-18,-8.525111396759561e-17,-3.492794487785455e-17)
    sum e = 1.1963606331881975
    sum de = 1.5829351718288365e-17
Info: cfl dt = 0.0025612950272837836 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8921e+04 | 13440 |      1 | 2.281e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.38538114152449 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4780491250651273, dt = 0.0019508749348728371 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.5%)
   patch tree reduce : 1.64 us    (0.5%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 323.09 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 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: 1.8642113095238098
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,4.6118591048679616e-20,1.1810776511176058e-18)
    sum a = (2.055092332548435e-17,-1.9166167708542177e-17,-4.644621272794751e-17)
    sum e = 1.1963604061454236
    sum de = -2.2551405187698492e-17
Info: cfl dt = 0.002560102017302908 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.3618e+04 | 13440 |      1 | 2.507e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.018432701775023 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 228                                                     [SPH][rank=0]
Info: time since start : 235.692311582 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.89 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.89 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.87 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.50s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.48000000000000015, dt = 0.002560102017302908 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.59 us    (2.5%)
   patch tree reduce : 1.28 us    (0.3%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 363.66 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 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: 1.8681547619047618
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,1.6440978237483836e-19,1.0531285080945647e-18)
    sum a = (-1.3869118108093834e-17,-6.731158099240012e-17,-1.3527121803044535e-18)
    sum e = 1.1963608065145785
    sum de = -4.7488055154865094e-17
Info: cfl dt = 0.002559017659657758 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9721e+04 | 13440 |      1 | 2.250e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.95314332728368 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.48256010201730304, dt = 0.002559017659657758 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.3%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 350.70 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.877157738095238
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,-2.7618747139379724e-19,1.1043381124408258e-18)
    sum a = (-1.5334132052315525e-17,-6.1331736667334966e-18,2.7980808026248903e-17)
    sum e = 1.196360935107024
    sum de = -5.074066167232161e-17
Info: cfl dt = 0.002556151523586395 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9653e+04 | 13440 |      1 | 2.253e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.88950805991394 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4851191196769608, dt = 0.002556151523586395 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.5%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 326.75 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8779761904761905
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-4.959245894585289e-19,1.2070942264250997e-18)
    sum a = (-3.4330798965185286e-17,-1.0426395233446945e-17,1.4392594063633392e-17)
    sum e = 1.196361040783254
    sum de = -4.83554168928535e-17
Info: cfl dt = 0.0025553009180322183 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9977e+04 | 13440 |      1 | 2.241e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.0653057493992 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.4876752712005472, dt = 0.0025553009180322183 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.55 us    (1.5%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 349.22 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8782738095238096
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-5.600114627339668e-20,1.2291802399954902e-18)
    sum a = (3.013760083620079e-17,-5.9798443250651594e-18,-1.3500768322445288e-17)
    sum e = 1.1963611324121672
    sum de = -5.746271514173174e-17
Info: cfl dt = 0.0025752481999665876 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9704e+04 | 13440 |      1 | 2.251e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.86453480042504 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.49023057211857946, dt = 0.0025752481999665876 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.4%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 1.07 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 368.60 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8789434523809525
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-2.6473269147423883e-19,1.1580183555932662e-18)
    sum a = (6.557225127284992e-18,6.056508995899328e-17,-1.2698185049650085e-17)
    sum e = 1.1963612199898057
    sum de = 4.336808689942018e-17
Info: cfl dt = 0.0025860236635264233 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.5827e+04 | 13440 |      1 | 2.407e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.50919447123452 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.49280582031854603, dt = 0.0025860236635264233 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.75 us    (1.3%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 339.38 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8784970238095235
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-3.3181427845413645e-19,1.133536571059308e-18)
    sum a = (2.257295401873555e-17,-2.6602640779456543e-17,-5.099158918857646e-17)
    sum e = 1.196361273549442
    sum de = 1.2576745200831851e-17
Info: cfl dt = 0.002595618734067225 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 6.0859e+04 | 13440 |      1 | 2.208e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.15637344999052 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4953918439820725, dt = 0.002595618734067225 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.4%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 354.83 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (65.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8600446428571427
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,2.395770963567772e-19,9.495488478415642e-19)
    sum a = (3.77860996373909e-17,-1.425962877515538e-17,1.8545064086237233e-17)
    sum e = 1.1963612970469022
    sum de = 4.401860820291148e-17
Info: cfl dt = 0.0025925443180014724 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0898e+04 | 13440 |      1 | 2.207e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.33929554175582 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4979874627161397, dt = 0.002012537283860416 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.6%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 310.16 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.855654761904762
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-1.1859066269660473e-19,1.0721823740391895e-18)
    sum a = (-7.594593954509838e-19,-6.117840732566663e-17,4.476977199619096e-17)
    sum e = 1.1963608120269376
    sum de = 2.5804011705155006e-17
Info: cfl dt = 0.0025890845741873966 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0988e+04 | 13440 |      1 | 2.204e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.876864736105006 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 236                                                     [SPH][rank=0]
Info: time since start : 244.68789017 (s)                                             [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.89 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.89 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.87 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.52s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.5000000000000001, dt = 0.0025890845741873966 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.60 us    (2.2%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 411.65 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8695684523809528
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-6.839926100985989e-19,1.208366979749495e-18)
    sum a = (-1.0249108182142929e-17,2.0009479087718033e-17,5.755480374327038e-17)
    sum e = 1.1963612553117526
    sum de = -4.2934406030425976e-17
Info: cfl dt = 0.0025941276163005495 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0803e+04 | 13440 |      1 | 2.210e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.16749281444509 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5025890845741875, dt = 0.0025941276163005495 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.4%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 701.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 344.31 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8770089285714284
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-2.3718132539320947e-19,1.3751725330879013e-18)
    sum a = (9.314757506351499e-18,-3.120252102950666e-17,5.225296260089489e-17)
    sum e = 1.1963612296433555
    sum de = -3.0140820395097023e-17
Info: cfl dt = 0.002606011697104425 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.5087e+04 | 13440 |      1 | 2.440e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.277324685828475 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.505183212190488, dt = 0.002606011697104425 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.32 us    (1.3%)
   patch tree reduce : 1.43 us    (0.3%)
   gen split merge   : 1.04 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 394.76 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.876934523809524
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-7.690424793052549e-19,1.508811632149416e-18)
    sum a = (-4.294179875098875e-17,-5.3051952217244746e-17,6.236191818166911e-18)
    sum e = 1.1963612095441574
    sum de = -2.6454533008646308e-17
Info: cfl dt = 0.0025825991771516225 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0572e+04 | 13440 |      1 | 2.219e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.281942201029814 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5077892238875924, dt = 0.0025825991771516225 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.7%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 313.60 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8773065476190476
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-7.930001889409326e-19,1.4593239881832192e-18)
    sum a = (1.1190646170825064e-17,-1.0733053916783619e-18,-2.115585549378521e-17)
    sum e = 1.19636117061327
    sum de = -6.7220534694101275e-18
Info: cfl dt = 0.002576553398051002 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.0637e+04 | 13440 |      1 | 2.216e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.947039944617416 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.510371823064744, dt = 0.002576553398051002 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.4%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 352.72 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8774553571428576
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-7.7143825026882265e-19,1.380525583834623e-18)
    sum a = (2.4266764089977965e-17,1.9319497050210515e-17,-1.953990797885875e-17)
    sum e = 1.1963611594354107
    sum de = 1.3877787807814457e-17
Info: cfl dt = 0.0025758529104397045 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5180e+04 | 13440 |      1 | 2.975e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.18061961507005 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.512948376462795, dt = 0.0025758529104397045 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (1.2%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 701.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 381.50 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.98 us    (66.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8775297619047624
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-4.887372765678255e-19,1.330775902419286e-18)
    sum a = (-4.118330286373e-17,6.746491033406846e-17,-4.039030267478907e-17)
    sum e = 1.1963611634110687
    sum de = -7.15573433840433e-18
Info: cfl dt = 0.00259165552162409 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8643e+04 | 13440 |      1 | 2.763e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.56164711097448 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5155242293732347, dt = 0.00259165552162409 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.14 us    (1.5%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 332.30 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8735119047619047
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-2.0124476093969286e-19,1.1892382459622586e-18)
    sum a = (-2.0007083316754465e-17,8.126455108421884e-18,5.9558866154294815e-18)
    sum e = 1.196361185646621
    sum de = -5.9631119486702744e-18
Info: cfl dt = 0.0025966335263033734 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.4510e+04 | 13440 |      1 | 2.466e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.84061077590662 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5181158848948588, dt = 0.001884115105141304 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.7%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 821.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 306.24 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (64.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8635416666666664
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,-4.456133992236056e-19,1.2618974872167125e-18)
    sum a = (2.0967787473145143e-17,4.185891027545612e-17,1.5543762011627707e-17)
    sum e = 1.1963607006839607
    sum de = 7.589415207398531e-19
Info: cfl dt = 0.0026092747237978133 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0913e+04 | 13440 |      1 | 2.206e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.74098468651298 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 244                                                     [SPH][rank=0]
Info: time since start : 253.67195763100003 (s)                                       [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.89 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.89 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.88 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.54s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.5200000000000001, dt = 0.0026092747237978133 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.28 us    (2.3%)
   patch tree reduce : 1.32 us    (0.3%)
   gen split merge   : 562.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 386.28 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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: 1.8671874999999998
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-2.252024705753706e-19,1.3154654286052357e-18)
    sum a = (-4.1911617236654605e-17,1.9779485075215528e-17,-2.363667632655964e-17)
    sum e = 1.1963612033765685
    sum de = 3.5561831257524545e-17
Info: cfl dt = 0.0026070764352294448 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.3197e+04 | 13440 |      1 | 2.526e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.17998461854995 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5226092747237979, dt = 0.0026070764352294448 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.81 us    (1.6%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 342.57 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 1.8767857142857143
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-4.456133992236056e-19,1.1997946117704791e-18)
    sum a = (1.4875341912792297e-17,9.966407208441932e-18,2.0749772315460473e-17)
    sum e = 1.1963612087328683
    sum de = 2.8297676701871666e-17
Info: cfl dt = 0.002590142262359933 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.0915e+04 | 13440 |      1 | 2.206e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.538637197085684 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5252163511590273, dt = 0.002590142262359933 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.3%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 352.69 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8767113095238095
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-2.5395172213818386e-19,1.3143424109660633e-18)
    sum a = (-9.765162447502239e-18,-4.093893422544609e-17,2.9484753248628575e-17)
    sum e = 1.1963611986020604
    sum de = -1.8106176280507924e-17
Info: cfl dt = 0.002570475200689667 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.0355e+04 | 13440 |      1 | 2.227e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.87325452981852 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5278064934213873, dt = 0.002570475200689667 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.7%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.4%)
   LB compute        : 320.84 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8700892857142855
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-2.7311788984672605e-19,1.4043709917063834e-18)
    sum a = (-6.874425202861366e-17,3.833233541708435e-18,3.9580532089103164e-17)
    sum e = 1.1963611937125895
    sum de = 3.0249240612345574e-17
Info: cfl dt = 0.0025665559270273367 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8375e+04 | 13440 |      1 | 2.302e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.19237976644362 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.530376968622077, dt = 0.0025665559270273367 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.6%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 340.40 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.871577380952381
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,-3.9290643802511465e-19,1.5117314780112642e-18)
    sum a = (3.8332335417084355e-20,-5.044535340888301e-17,-8.24265000015492e-17)
    sum e = 1.1963612145226281
    sum de = -3.7947076036992655e-18
Info: cfl dt = 0.002613838126534372 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.3942e+04 | 13440 |      1 | 2.492e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.08380140527668 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5329435245491043, dt = 0.002613838126534372 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.60 us    (1.6%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 322.03 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.80 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8776041666666665
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-5.941511989648075e-19,1.1405367143434824e-18)
    sum a = (-3.612822613060201e-17,3.9558970150431056e-17,4.182057794003903e-17)
    sum e = 1.1963612946049407
    sum de = 3.5453411040275995e-17
Info: cfl dt = 0.0026096299664217604 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0736e+04 | 13440 |      1 | 2.213e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.523536355621566 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5355573626756387, dt = 0.0026096299664217604 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.8%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 322.16 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8744791666666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,-3.018671414095393e-19,1.4123444169445075e-18)
    sum a = (7.331059148517383e-18,-1.6252910216843767e-17,-1.45183720392207e-17)
    sum e = 1.19636135321182
    sum de = 8.456776945386935e-18
Info: cfl dt = 0.0025894215171759095 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0472e+04 | 13440 |      1 | 2.663e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.280007165449405 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5381669926420605, dt = 0.0018330073579396755 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.4%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 348.74 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 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: 1.8642857142857143
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-3.9290643802511465e-19,1.306406419649245e-18)
    sum a = (-6.30471086772495e-17,-3.0052550966994134e-17,-3.1087524023255414e-17)
    sum e = 1.1963608319738666
    sum de = 6.331740687315346e-17
Info: cfl dt = 0.0025947883802042815 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0595e+04 | 13440 |      1 | 2.656e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.841111387128826 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 252                                                     [SPH][rank=0]
Info: time since start : 262.66491922200004 (s)                                       [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.89 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.93 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.85 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.56s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.5400000000000001, dt = 0.0025947883802042815 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.38 us    (2.3%)
   patch tree reduce : 1.34 us    (0.3%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 382.45 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (75.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-4.8394573464069e-19,1.2123349754079043e-18)
    sum a = (-2.059404720282857e-17,3.2199161750350858e-18,2.785083745147535e-17)
    sum e = 1.19636144187556
    sum de = -6.505213034913027e-19
Info: cfl dt = 0.002581459195724069 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.5338e+04 | 13440 |      1 | 2.429e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.461961193605234 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5425947883802045, dt = 0.002581459195724069 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.4%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 353.12 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8718005952380954
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,-4.024895218793857e-19,1.3579903632085635e-18)
    sum a = (-1.6291242552260852e-17,-2.069946112522555e-18,5.592448160256251e-17)
    sum e = 1.1963615090032422
    sum de = 1.9949319973733282e-17
Info: cfl dt = 0.002580692553044151 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.0885e+04 | 13440 |      1 | 2.207e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.099423847981626 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5451762475759285, dt = 0.002580692553044151 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.3%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 387.56 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8777529761904765
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-3.449910187537592e-19,1.5424647274032821e-18)
    sum a = (2.359355244921542e-17,1.76328742918588e-18,-3.8843832517806076e-17)
    sum e = 1.1963615598671082
    sum de = -1.5178830414797062e-18
Info: cfl dt = 0.002551145819852284 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 6.0249e+04 | 13440 |      1 | 2.231e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.64730673705197 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5477569401289727, dt = 0.002551145819852284 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.76 us    (1.2%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 370.86 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.877232142857143
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-6.51649702090434e-19,1.3158772017395989e-18)
    sum a = (-3.18541707315971e-17,2.2462748554411433e-17,-5.350475292935906e-17)
    sum e = 1.1963615605046363
    sum de = 2.6129272356900657e-17
Info: cfl dt = 0.0025515046930549186 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1784e+04 | 13440 |      1 | 2.595e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.38607149224714 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.550308085948825, dt = 0.0025515046930549186 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.6%)
   patch tree reduce : 1.69 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 357.92 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.35 us    (76.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8776041666666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-4.024895218793857e-19,1.1703715496241625e-18)
    sum a = (-5.586937887040045e-17,-6.133173666733497e-19,4.1834952565820436e-17)
    sum e = 1.1963615665070593
    sum de = -1.1600963245594897e-17
Info: cfl dt = 0.0025831353124168813 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0749e+04 | 13440 |      1 | 2.212e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.518284611397775 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5528595906418798, dt = 0.0025831353124168813 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.4%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 332.64 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8775297619047622
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,-7.091482052160606e-19,1.3977451876352664e-18)
    sum a = (-7.641551065395767e-17,3.4652431217044257e-17,7.776672547740988e-18)
    sum e = 1.1963615860455796
    sum de = -1.4148838350935833e-17
Info: cfl dt = 0.002597350177012989 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8216e+04 | 13440 |      1 | 2.309e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.27998260681309 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5554427259542967, dt = 0.002597350177012989 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.6%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 347.18 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8753720238095237
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,-3.6415718646230135e-19,1.3773624174842874e-18)
    sum a = (-1.7287883273105044e-17,-2.207942520024059e-17,3.443681183032316e-17)
    sum e = 1.1963615776386674
    sum de = 9.595189226496714e-18
Info: cfl dt = 0.002588802304989147 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9872e+04 | 13440 |      1 | 2.245e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.653814442551095 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5580400761313097, dt = 0.001959923868690483 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.5%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 344.56 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8575892857142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-5.462357796934521e-19,1.4733055577909156e-18)
    sum a = (5.622395297300848e-17,-9.50641918343692e-18,9.111116974448237e-17)
    sum e = 1.1963610268412386
    sum de = 3.577867169202165e-18
Info: cfl dt = 0.0025894125304972418 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.3405e+04 | 13440 |      1 | 2.517e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.036629241633673 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 260                                                     [SPH][rank=0]
Info: time since start : 271.75675910300004 (s)                                       [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.87 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.86 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.85 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.58s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.5600000000000002, dt = 0.0025894125304972418 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.64 us    (2.6%)
   patch tree reduce : 1.31 us    (0.3%)
   gen split merge   : 602.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 353.65 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8560267857142858
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-1.4374625781406633e-19,1.777559111683696e-18)
    sum a = (4.831790879323483e-17,-1.583125452725584e-17,4.946308731382022e-17)
    sum e = 1.1963615184875398
    sum de = 3.957337929572091e-18
Info: cfl dt = 0.0025847900064946048 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.2387e+04 | 13440 |      1 | 2.566e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.33493919914979 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5625894125304974, dt = 0.0025847900064946048 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.5%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 315.17 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.857738095238095
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-3.25824851045217e-19,1.858968532043368e-18)
    sum a = (-1.76328742918588e-18,-3.5342413254551774e-17,4.767584217499866e-18)
    sum e = 1.1963614853446058
    sum de = 2.585822181377928e-17
Info: cfl dt = 0.0025814436929365906 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.3526e+04 | 13440 |      1 | 2.511e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.05892940233901 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.565174202536992, dt = 0.0025814436929365906 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.4%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 369.15 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.89 us    (72.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8741071428571432
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-6.708158697989762e-19,1.8044647426222013e-18)
    sum a = (1.5582094347044792e-17,6.324835343818918e-18,-1.5400015753813638e-17)
    sum e = 1.1963614475843178
    sum de = 1.4094628242311558e-17
Info: cfl dt = 0.002576691855633511 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9762e+04 | 13440 |      1 | 2.249e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.32287731801324 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5677556462299286, dt = 0.002576691855633511 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.6%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 330.65 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8760416666666666
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-2.1082784479396395e-19,1.7382067019110303e-18)
    sum a = (4.690919546665698e-18,-3.986562883376773e-18,-6.499247469966652e-17)
    sum e = 1.1963614000018752
    sum de = 5.5294310796760726e-18
Info: cfl dt = 0.0025673013039902047 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7027e+04 | 13440 |      1 | 2.357e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.359057675470495 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.570332338085562, dt = 0.0025673013039902047 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.63 us    (1.6%)
   patch tree reduce : 1.95 us    (0.6%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 328.15 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (65.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8770833333333337
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-1.9166167708542177e-19,1.5058917862875677e-18)
    sum a = (1.7211218602270874e-17,-2.219442220649184e-17,-2.3123981340356136e-17)
    sum e = 1.1963613378593194
    sum de = -2.589549126345847e-17
Info: cfl dt = 0.0025556775934270607 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.3513e+04 | 13440 |      1 | 2.512e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.79929692161598 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5728996393895522, dt = 0.0025556775934270607 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.7%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 323.23 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8776041666666672
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-4.791541927135544e-20,1.5002018302490943e-18)
    sum a = (-2.621991636802659e-17,2.526100903985859e-17,-3.723028077384318e-17)
    sum e = 1.1963612640328367
    sum de = 2.6264797628461345e-17
Info: cfl dt = 0.00254596613987566 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep 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.0706e+04 | 13440 |      1 | 2.214e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.556853609740806 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5754553169829792, dt = 0.00254596613987566 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.4%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.35 us    (0.4%)
   LB compute        : 347.72 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.877604166666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-2.4916018021104833e-19,1.377718039736692e-18)
    sum a = (-3.033525194069513e-17,-5.464274413705375e-17,6.16192291829631e-18)
    sum e = 1.1963611860730883
    sum de = 5.800481622797449e-18
Info: cfl dt = 0.002564430881414196 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6299e+04 | 13440 |      1 | 2.387e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.393657088593486 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5780012831228549, dt = 0.001998716877145257 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (1.6%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 365.27 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.78 us    (72.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8683779761904764
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-4.31238773442199e-19,1.4521366752925158e-18)
    sum a = (3.056524595319764e-17,4.0268118355647113e-17,3.6482800233210035e-17)
    sum e = 1.1963608107896906
    sum de = -8.375461782450522e-18
Info: cfl dt = 0.002645648431567327 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.2519e+04 | 13440 |      1 | 2.559e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.116981985572245 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 268                                                     [SPH][rank=0]
Info: time since start : 280.680190058 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.87 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.87 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.85 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.60s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.5800000000000002, dt = 0.002645648431567327 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.15 us   (2.7%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.2%)
   LB compute        : 357.58 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8645089285714287
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-6.995651213617895e-19,1.57671676539804e-18)
    sum a = (-4.393843947183294e-18,4.401031260073998e-18,-1.0354522104539912e-17)
    sum e = 1.1963611330840247
    sum de = 9.703609443745265e-18
Info: cfl dt = 0.00265570947577367 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7467e+04 | 13440 |      1 | 2.339e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.724263178359934 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5826456484315675, dt = 0.00265570947577367 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (1.4%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 354.79 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 1.864732142857143
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,-2.4916018021104833e-19,1.4955600240071817e-18)
    sum a = (8.255826740454544e-18,1.6190620171791004e-17,-4.2505768435619414e-17)
    sum e = 1.1963610881912503
    sum de = -1.463672932855431e-17
Info: cfl dt = 0.002667695087782433 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6077e+04 | 13440 |      1 | 2.397e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.89028085154443 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5853013579073412, dt = 0.002667695087782433 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.6%)
   patch tree reduce : 1.70 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 324.89 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.80 us    (73.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8756696428571429
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-4.599880250050123e-19,1.3432788321354053e-18)
    sum a = (6.165756151838019e-17,2.695721488206457e-17,1.360318753113781e-17)
    sum e = 1.1963610735880634
    sum de = -1.1506095555502416e-17
Info: cfl dt = 0.002649919462151927 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.3766e+04 | 13440 |      1 | 2.500e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.41905287897183 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5879690529951236, dt = 0.002649919462151927 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.5%)
   patch tree reduce : 2.81 us    (0.8%)
   gen split merge   : 1.41 us    (0.4%)
   split / merge op  : 0/0
   apply split merge : 2.39 us    (0.7%)
   LB compute        : 320.16 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.07 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8720982142857143
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-7.283143729246027e-19,1.4379117851963323e-18)
    sum a = (-4.49446632765314e-18,1.8936173696039672e-17,-4.9073774532240464e-17)
    sum e = 1.1963610704954128
    sum de = -1.3579632210380943e-17
Info: cfl dt = 0.0026343756399502673 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0204e+04 | 13440 |      1 | 2.232e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.73244954632364 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5906189724572755, dt = 0.0026343756399502673 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.6%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 335.39 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8710565476190473
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,5.654019474019942e-19,1.2338220462374027e-18)
    sum a = (3.548615951236584e-17,4.990870071304383e-17,3.479917218856278e-17)
    sum e = 1.1963610906203253
    sum de = 8.05020113070487e-18
Info: cfl dt = 0.002683419205779012 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.0207e+04 | 13440 |      1 | 2.232e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.48402093350862 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5932533480972257, dt = 0.002683419205779012 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.6%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 1.23 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 342.49 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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: 1.8726190476190476
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,-8.337282953215847e-19,1.4320720934726358e-18)
    sum a = (2.1169032234084833e-17,-2.085279046689389e-17,-5.615747032876948e-17)
    sum e = 1.1963611615160252
    sum de = -6.979551485375435e-19
Info: cfl dt = 0.0026739670567986515 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0105e+04 | 13440 |      1 | 2.236e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.20200829425381 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5959367673030047, dt = 0.0026739670567986515 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.4%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 1.08 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 362.69 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 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: 1.877752976190476
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-2.2999401250250614e-19,1.165842045146167e-18)
    sum a = (-6.995651213617895e-18,-6.742657799865138e-17,2.649722685705956e-18)
    sum e = 1.1963612070797232
    sum de = -5.990217002982412e-18
Info: cfl dt = 0.002667556341756203 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6933e+04 | 13440 |      1 | 2.361e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.777621006531646 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5986107343598034, dt = 0.0013892656401968129 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.6%)
   patch tree reduce : 1.82 us    (0.6%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 308.65 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8758184523809522
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,-6.612327859447051e-19,1.239961209331545e-18)
    sum a = (-2.2520247057537057e-17,-7.704799418833955e-18,2.2507070317237435e-17)
    sum e = 1.1963606336735444
    sum de = 5.6785088783928295e-18
Info: cfl dt = 0.002676943489960692 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.2518e+04 | 13440 |      1 | 2.559e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.54327904539828 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 276                                                     [SPH][rank=0]
Info: time since start : 289.685629768 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.86 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.88 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.85 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.62s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.6000000000000002, dt = 0.002676943489960692 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.02 us   (2.5%)
   patch tree reduce : 1.37 us    (0.3%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.2%)
   LB compute        : 382.14 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8638392857142858
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-5.270696119849099e-19,1.3179735013327207e-18)
    sum a = (-2.4245202151305854e-17,2.1887763523155166e-17,-2.2066248459940964e-17)
    sum e = 1.1963612548590876
    sum de = 1.1085967213664283e-17
Info: cfl dt = 0.0026686266540223496 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8952e+04 | 13440 |      1 | 2.280e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.270834071439985 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6026769434899609, dt = 0.0026686266540223496 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.6%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 322.05 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 1.8642113095238095
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,-2.9707559948240377e-19,1.2029764950814677e-18)
    sum a = (-4.6300669641910765e-17,-2.2731074902331023e-17,1.146376406067179e-16)
    sum e = 1.19636129783093
    sum de = 1.3796472644878044e-17
Info: cfl dt = 0.00265983596708053 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.2157e+04 | 13440 |      1 | 2.577e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.28255578344386 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6053455701439833, dt = 0.00265983596708053 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.5%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.36 us    (0.4%)
   LB compute        : 337.85 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.74 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: 1.869940476190476
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-2.2999401250250614e-19,1.6959063708355368e-18)
    sum a = (5.208406074796337e-18,2.092945513772806e-17,-3.035322022292189e-17)
    sum e = 1.1963613213293542
    sum de = 1.338989683019598e-17
Info: cfl dt = 0.00270781825145908 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.3635e+04 | 13440 |      1 | 2.506e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.21249810313452 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6080054061110638, dt = 0.00270781825145908 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.74 us    (1.7%)
   patch tree reduce : 1.61 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 329.34 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8764136904761906
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-4.791541927135544e-19,1.4305747366204059e-18)
    sum a = (2.682065593714121e-18,-2.085279046689389e-17,-7.050514368683597e-17)
    sum e = 1.1963613798481263
    sum de = 6.5052130349130266e-18
Info: cfl dt = 0.0026990486652442715 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9703e+04 | 13440 |      1 | 2.251e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.30333912020128 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6107132243625228, dt = 0.0026990486652442715 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.6%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.4%)
   LB compute        : 321.87 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.876190476190476
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-7.762297921959581e-19,1.1851579485399322e-18)
    sum a = (-1.8567224967650233e-18,2.790594018363741e-17,2.866420169360661e-17)
    sum e = 1.1963614027127094
    sum de = -1.734723475976807e-18
Info: cfl dt = 0.0026892099191715042 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.3603e+04 | 13440 |      1 | 2.507e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.75258921200308 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6134122730277671, dt = 0.0026892099191715042 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.5%)
   patch tree reduce : 1.88 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 343.30 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8764880952380953
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,5.174865281306388e-19,1.3801138107002597e-18)
    sum a = (-2.0354470106471792e-17,-1.663623357101461e-17,-3.9839275353168484e-17)
    sum e = 1.196361426581463
    sum de = 3.415236843329339e-18
Info: cfl dt = 0.00270289115950585 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7996e+04 | 13440 |      1 | 2.800e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.573024740847146 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6161014829469387, dt = 0.00270289115950585 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.5%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.14 us    (0.3%)
   LB compute        : 347.53 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8758184523809525
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-5.941511989648075e-19,1.188152662244392e-18)
    sum a = (1.4202130272029753e-17,-4.063227554210942e-18,-1.2014791382292378e-17)
    sum e = 1.1963614686780417
    sum de = -3.333921680392926e-17
Info: cfl dt = 0.0027214376872132014 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0089e+04 | 13440 |      1 | 2.237e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.50386523998332 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6188043741064445, dt = 0.0011956258935557074 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.4%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 381.96 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 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: 1.8748511904761906
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-2.9707559948240377e-19,1.2004309884326768e-18)
    sum a = (9.535168434999733e-18,-1.2649670687637837e-17,-5.48990916301555e-18)
    sum e = 1.1963607043807662
    sum de = -1.7780915628762273e-17
Info: cfl dt = 0.0027250952848026553 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.2876e+04 | 13440 |      1 | 2.542e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.9339133298101 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 284                                                     [SPH][rank=0]
Info: time since start : 298.66416195200003 (s)                                       [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.91 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.90 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.89 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.64s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.6200000000000002, dt = 0.0027250952848026553 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.63 us    (2.4%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 581.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 384.71 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8561011904761904
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-6.324835343818918e-19,1.1918960543749666e-18)
    sum a = (2.6631390031019354e-17,-9.966407208441932e-18,4.776328781516889e-17)
    sum e = 1.1963615071427538
    sum de = 1.452830911130576e-17
Info: cfl dt = 0.0027076720432186 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.2806e+04 | 13440 |      1 | 2.545e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.54473158222303 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6227250952848029, dt = 0.0027076720432186 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.4%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 351.54 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8550595238095242
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-5.270696119849099e-20,1.397632885871349e-18)
    sum a = (2.2299836128888825e-17,1.7709538962692972e-17,5.28327391740783e-17)
    sum e = 1.1963615314067089
    sum de = 4.7704895589362195e-18
Info: cfl dt = 0.0026925332825730747 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9823e+04 | 13440 |      1 | 2.247e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.387855879993154 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6254327673280216, dt = 0.0026925332825730747 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.7%)
   patch tree reduce : 1.72 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.12 us    (0.3%)
   LB compute        : 328.53 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8593005952380954
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-3.449910187537592e-19,1.5389833727218476e-18)
    sum a = (4.101559889628026e-17,-3.756568870874267e-18,4.8661701926506806e-17)
    sum e = 1.1963615344168288
    sum de = -1.8431436932253575e-17
Info: cfl dt = 0.002715973348698444 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9689e+04 | 13440 |      1 | 2.252e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.04888049695918 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6281253006105947, dt = 0.002715973348698444 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.3%)
   patch tree reduce : 1.44 us    (0.3%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 372.91 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8748511904761906
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,-5.749850312562653e-20,1.6740449607929808e-18)
    sum a = (-9.966407208441932e-18,-2.3459389275255625e-17,-4.570532055746418e-18)
    sum e = 1.196361558107704
    sum de = 1.3118846287074604e-17
Info: cfl dt = 0.0027178827058606733 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8831e+04 | 13440 |      1 | 2.285e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.798770147107895 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6308412739592931, dt = 0.0027178827058606733 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.21 us    (1.4%)
   patch tree reduce : 1.89 us    (0.5%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.22 us    (0.3%)
   LB compute        : 365.67 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.27 us    (70.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8774553571428572
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-4.360303153693346e-19,1.5806098932138377e-18)
    sum a = (-2.6353480599245495e-17,3.074253300450165e-17,-1.9210489471368182e-17)
    sum e = 1.1963615599515995
    sum de = 4.0115480381963664e-18
Info: cfl dt = 0.0027037231046400604 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8987e+04 | 13440 |      1 | 2.278e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.94289453278716 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6335591566651538, dt = 0.0027037231046400604 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (1.7%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 1.22 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 354.60 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.877306547619048
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,-8.433113791758558e-19,1.5088864999920276e-18)
    sum a = (-1.460461979390914e-17,3.442243720454175e-17,-2.641337487333469e-18)
    sum e = 1.1963615464869413
    sum de = 4.9873299934333204e-18
Info: cfl dt = 0.0027203207446883752 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8862e+04 | 13440 |      1 | 2.283e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.62820279427886 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6362628797697939, dt = 0.0027203207446883752 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (1.4%)
   patch tree reduce : 1.89 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 401.88 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.61 us    (72.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8775297619047622
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-6.229004505276207e-19,1.5106833282147033e-18)
    sum a = (1.1078044935537378e-17,3.327246714202922e-17,2.988903959873063e-17)
    sum e = 1.1963615545913406
    sum de = -6.7220534694101275e-18
Info: cfl dt = 0.00271776457190802 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.4112e+04 | 13440 |      1 | 2.484e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.429207604049395 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6389832005144823, dt = 0.0010167994855179163 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.69 us    (1.5%)
   patch tree reduce : 1.97 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 353.00 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (70.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8771577380952384
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,8.62477546884398e-20,1.598727911125819e-18)
    sum a = (-1.9089503037708007e-17,3.2199161750350858e-18,-2.9090648925121675e-17)
    sum e = 1.1963607168896333
    sum de = 2.883977778811442e-17
Info: cfl dt = 0.002722060278647723 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.3586e+04 | 13440 |      1 | 2.508e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.59463275324707 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 292                                                     [SPH][rank=0]
Info: time since start : 307.789497788 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.90 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.91 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.88 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.66s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.6400000000000002, dt = 0.002722060278647723 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.21 us    (2.2%)
   patch tree reduce : 1.42 us    (0.3%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.2%)
   LB compute        : 392.13 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8649553571428574
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-1.293716320326597e-19,1.482383283707559e-18)
    sum a = (-1.2189682662632825e-17,2.5452670716944012e-17,6.184383271079758e-18)
    sum e = 1.1963615412826611
    sum de = 2.42861286636753e-17
Info: cfl dt = 0.0027218225267530228 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8961e+04 | 13440 |      1 | 2.279e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.98980149792487 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.642722060278648, dt = 0.0027218225267530228 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.1%)
   patch tree reduce : 1.56 us    (0.3%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.2%)
   LB compute        : 465.00 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.95 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8648065476190476
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-2.0124476093969286e-19,1.5553045624111531e-18)
    sum a = (5.933845522564658e-17,-5.9798443250651594e-18,-9.039842788282097e-18)
    sum e = 1.1963615417366509
    sum de = -7.047314121155779e-18
Info: cfl dt = 0.002717248152676945 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9540e+04 | 13440 |      1 | 2.257e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.40838952884659 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.645443882805401, dt = 0.002717248152676945 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (1.8%)
   patch tree reduce : 1.71 us    (0.5%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 329.77 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8642857142857143
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-3.354079348994881e-19,1.5028970725831081e-18)
    sum a = (1.3952970091818706e-17,-1.5792922191838754e-17,-3.304546784323117e-17)
    sum e = 1.196361529598789
    sum de = -2.1358782797964437e-17
Info: cfl dt = 0.0027223462882698555 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9575e+04 | 13440 |      1 | 2.256e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.36098981705995 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6481611309580779, dt = 0.0027223462882698555 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.71 us    (1.6%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 340.70 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8712797619047616
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-1.8687013515828623e-19,1.3904455729806457e-18)
    sum a = (4.0708940212943584e-17,3.3732455167034233e-18,-6.534105937486563e-17)
    sum e = 1.1963615205947244
    sum de = 6.288372600415926e-18
Info: cfl dt = 0.00271149567916097 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9712e+04 | 13440 |      1 | 2.251e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.54184445470935 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6508834772463478, dt = 0.00271149567916097 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.5%)
   patch tree reduce : 1.99 us    (0.5%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 345.43 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.870386904761905
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-3.545741026080303e-19,1.1629970671269304e-18)
    sum a = (-5.24386348505714e-17,2.2999401250250612e-17,-1.6875810667371388e-17)
    sum e = 1.1963614993838012
    sum de = -2.8406096919120216e-17
Info: cfl dt = 0.0027254357233772683 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9846e+04 | 13440 |      1 | 2.246e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.46611679339121 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6535949729255087, dt = 0.0027254357233772683 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.5%)
   patch tree reduce : 1.59 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 364.88 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (71.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8717261904761906
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,-6.20504679564053e-19,1.177371692908337e-18)
    sum a = (-1.8591182677285913e-17,-4.9065389333867974e-18,1.5376058044177962e-17)
    sum e = 1.1963614975874244
    sum de = 3.415236843329339e-17
Info: cfl dt = 0.002737899134549009 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9489e+04 | 13440 |      1 | 2.259e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.428793848802044 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.656320408648886, dt = 0.002737899134549009 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.19 us    (1.4%)
   patch tree reduce : 1.79 us    (0.5%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 353.11 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8739583333333334
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,-4.959245894585289e-19,1.2651168044490066e-18)
    sum a = (-4.18972426108732e-17,4.13989222504511e-17,4.124798867974633e-17)
    sum e = 1.1963615048231369
    sum de = -2.677979366039196e-17
Info: cfl dt = 0.002740462155620149 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6193e+04 | 13440 |      1 | 2.392e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.2096604975639 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.659058307783435, dt = 0.0009416922165652597 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.20 us    (1.3%)
   patch tree reduce : 1.82 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 372.88 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8735863095238097
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.9166167708542177e-20,1.3315994486880124e-18)
    sum a = (9.353089841768582e-18,-4.75320959171846e-18,2.827009737009971e-18)
    sum e = 1.1963607409999715
    sum de = -1.9081958235744878e-17
Info: cfl dt = 0.0027446110057810203 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.2336e+04 | 13440 |      1 | 2.568e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.201300672255602 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 300                                                     [SPH][rank=0]
Info: time since start : 316.724120222 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.90 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.90 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.88 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.68s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.6600000000000003, dt = 0.0027446110057810203 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.21 us    (2.5%)
   patch tree reduce : 1.32 us    (0.4%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 348.31 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8661458333333336
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,-3.1145022526381037e-19,1.329128809881833e-18)
    sum a = (1.5907919198090007e-18,-3.449910187537592e-17,-5.719184444228986e-17)
    sum e = 1.1963615173963875
    sum de = 6.396792817664476e-18
Info: cfl dt = 0.002747657673758072 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9188e+04 | 13440 |      1 | 2.271e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.51286920839685 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6627446110057813, dt = 0.002747657673758072 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.15 us    (1.3%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 389.37 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (70.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8642857142857143
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-2.827009737009971e-19,1.0789953477168353e-18)
    sum a = (-3.6415718646230135e-19,1.0886383258451956e-17,4.9580480091035044e-17)
    sum e = 1.1963615746205354
    sum de = 3.0791341698588326e-17
Info: cfl dt = 0.0027359517057194546 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9616e+04 | 13440 |      1 | 2.254e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.87607774175277 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6654922686795394, dt = 0.0027359517057194546 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.54 us    (1.5%)
   patch tree reduce : 1.68 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 350.37 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.91 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8639880952380954
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,3.593656445351658e-20,1.3661883919745221e-18)
    sum a = (6.886404057679204e-17,-1.303299404180868e-17,-1.6396656474657833e-17)
    sum e = 1.1963616324235788
    sum de = -1.691355389077387e-17
Info: cfl dt = 0.0027378899982584493 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9351e+04 | 13440 |      1 | 2.265e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.4947731873096 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.6682282203852589, dt = 0.0027378899982584493 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.34 us    (1.5%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 331.31 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.867782738095238
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,5.15090757167071e-20,1.2356188744600785e-18)
    sum a = (-1.2381344339718247e-17,-1.7019556925185454e-17,1.2958725141938079e-17)
    sum e = 1.1963617145231698
    sum de = 1.452830911130576e-17
Info: cfl dt = 0.0027282787385919326 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7824e+04 | 13440 |      1 | 2.324e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.40564849742465 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6709661103835173, dt = 0.0027282787385919326 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (1.8%)
   patch tree reduce : 1.86 us    (0.6%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 318.37 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 1.8783482142857144
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229113,-6.983672358800056e-19,1.3125830166646932e-18)
    sum a = (1.109721110324592e-17,1.6252910216843767e-17,-2.0437124204714882e-17)
    sum e = 1.1963617962929207
    sum de = -7.48099499014998e-18
Info: cfl dt = 0.0027303486050954465 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5946e+04 | 13440 |      1 | 2.925e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.57656394994451 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6736943891221092, dt = 0.0027303486050954465 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.5%)
   patch tree reduce : 1.73 us    (0.5%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 325.02 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8793898809523812
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-2.934819430370521e-19,1.2088161868051641e-18)
    sum a = (1.2304679668884078e-17,-8.27978445009022e-18,-3.649597697350966e-17)
    sum e = 1.1963618866485015
    sum de = 9.432558900623889e-18
Info: cfl dt = 0.002726506885219223 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9875e+04 | 13440 |      1 | 2.245e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.78948584981013 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6764247377272047, dt = 0.002726506885219223 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.6%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.3%)
   LB compute        : 329.44 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1.93 us    (65.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.878869047619048
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-6.656874225800889e-19,1.0760006340123757e-18)
    sum a = (2.1676935678361204e-17,-1.9932814416883864e-17,-4.162891626295361e-17)
    sum e = 1.1963619670217003
    sum de = 1.3877787807814457e-17
Info: cfl dt = 0.0027352367038401635 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.4733e+04 | 13440 |      1 | 2.456e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.97239652555175 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6791512446124239, dt = 0.0008487553875763387 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.47 us    (1.6%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 319.54 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (72.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8787202380952381
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-5.978945910953821e-19,1.0354971311595581e-18)
    sum a = (2.963089527740621e-17,3.265914977535587e-17,-2.534725679454703e-18)
    sum e = 1.196360917676638
    sum de = 6.396792817664476e-18
Info: cfl dt = 0.0027379530484625287 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.1131e+04 | 13440 |      1 | 2.199e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.897839421961343 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 308                                                     [SPH][rank=0]
Info: time since start : 325.813477229 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.91 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.92 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.91 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.70s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.6800000000000003, dt = 0.0027379530484625287 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.21 us    (2.6%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 572.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 333.70 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.869717261904762
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-3.731413275756805e-19,1.0529413384880358e-18)
    sum a = (9.06559732614045e-18,1.0886383258451956e-17,-7.922814576518622e-18)
    sum e = 1.196362036852728
    sum de = 1.940721888749053e-17
Info: cfl dt = 0.0027200812719815662 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9846e+04 | 13440 |      1 | 2.246e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.88964661275595 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6827379530484629, dt = 0.0027200812719815662 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.6%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 1.15 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 329.32 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.71 us    (77.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8578125
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-3.4019947682662363e-19,1.0146090030709515e-18)
    sum a = (-2.3382724604421456e-17,2.974589228365746e-17,5.069451358909406e-17)
    sum e = 1.1963621033239185
    sum de = 6.830473686658678e-18
Info: cfl dt = 0.002727078017838692 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.0657e+04 | 13440 |      1 | 2.216e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.19400958410729 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6854580343204444, dt = 0.002727078017838692 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.6%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 321.47 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.856696428571429
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-2.599411495471033e-19,1.2434051300916737e-18)
    sum a = (-9.391422177185667e-18,-4.75320959171846e-18,6.232837738817917e-17)
    sum e = 1.1963621645199092
    sum de = 2.5153490401663703e-17
Info: cfl dt = 0.0027342101924043042 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0791e+04 | 13440 |      1 | 2.211e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.40585449835277 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6881851123382831, dt = 0.0027342101924043042 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.90 us    (1.2%)
   patch tree reduce : 1.65 us    (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 375.25 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (72.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8587797619047617
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,-2.228066996118028e-19,1.4278794942863923e-18)
    sum a = (8.145621276130426e-18,-1.9319497050210515e-17,-2.191651277471798e-17)
    sum e = 1.1963622207487434
    sum de = 6.288372600415926e-18
Info: cfl dt = 0.0027233235253716834 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7605e+04 | 13440 |      1 | 2.333e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.18871488253324 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6909193225306873, dt = 0.0027233235253716834 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.4%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 363.08 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.01 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8741815476190475
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,-2.7311788984672605e-19,1.2478972006483633e-18)
    sum a = (-1.5869586862672924e-17,1.5332934166833741e-18,3.8725241855109467e-17)
    sum e = 1.1963622522148198
    sum de = -1.0462550964485118e-17
Info: cfl dt = 0.002713833152189568 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9601e+04 | 13440 |      1 | 2.710e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.182151242638305 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.693642646056059, dt = 0.002713833152189568 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.4%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 371.11 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8753720238095235
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-4.983203604220967e-19,1.4287779083977302e-18)
    sum a = (8.183953611547509e-18,-1.425962877515538e-17,-2.281732265701946e-17)
    sum e = 1.1963622752806842
    sum de = 8.673617379884035e-19
Info: cfl dt = 0.002718610169845697 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.0161e+04 | 13440 |      1 | 2.234e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.731954817178874 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6963564792082485, dt = 0.002718610169845697 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.31 us    (1.5%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 346.95 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8754464285714285
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-5.079034442763677e-19,1.2989570693094015e-18)
    sum a = (3.693320517436078e-17,1.0733053916783619e-18,-5.61185390506115e-17)
    sum e = 1.1963623007508026
    sum de = -7.643625316022806e-18
Info: cfl dt = 0.002727274400269127 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.4837e+04 | 13440 |      1 | 2.451e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.93249725191946 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6990750893780941, dt = 0.0009249106219061387 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.6%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 892.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 332.46 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8757440476190474
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-3.7374027031657247e-19,1.1829119132615874e-18)
    sum a = (1.7057889260602538e-18,-6.133173666733497e-19,9.270675320621852e-17)
    sum e = 1.19636106719933
    sum de = -1.1844908734404136e-17
Info: cfl dt = 0.0027305945432045315 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6462e+04 | 13440 |      1 | 2.380e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.988164990100522 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 316                                                     [SPH][rank=0]
Info: time since start : 334.988613201 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.92 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.92 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.89 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.72s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.7000000000000003, dt = 0.0027305945432045315 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.30 us    (2.5%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 350.65 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.874404761904762
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,-3.6894872838943693e-19,1.5285018747562386e-18)
    sum a = (-9.583083854271088e-19,1.3799640750150368e-18,1.6003750036632717e-17)
    sum e = 1.19636230468417
    sum de = 3.458604930228759e-17
Info: cfl dt = 0.002731338651376989 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.8293e+04 | 13440 |      1 | 2.783e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.32164561512146 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7027305945432049, dt = 0.002731338651376989 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.46 us    (1.5%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 351.22 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8627232142857144
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-1.9645321901255733e-19,1.440756763215569e-18)
    sum a = (1.4868154599901595e-17,2.4226035983597312e-17,5.89359657037672e-17)
    sum e = 1.196362293718079
    sum de = -1.0360907010814602e-17
Info: cfl dt = 0.002718899820940013 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9328e+04 | 13440 |      1 | 2.725e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.088956656733465 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7054619331945818, dt = 0.002718899820940013 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.11 us    (1.5%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 329.18 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8622023809523809
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,4.31238773442199e-20,1.6665581765318314e-18)
    sum a = (-1.5867191091709355e-17,2.9132574916984108e-18,5.450858096309395e-17)
    sum e = 1.1963622427280012
    sum de = 4.3503612170980865e-18
Info: cfl dt = 0.0026969549626084275 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.2295e+04 | 13440 |      1 | 2.570e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.08488622185618 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7081808330155218, dt = 0.0026969549626084275 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.57 us    (1.7%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 902.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 318.50 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (64.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8626488095238096
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,5.270696119849099e-20,1.8124007339390197e-18)
    sum a = (-2.1082784479396394e-17,-1.778620363352714e-17,-3.7263821567333125e-17)
    sum e = 1.1963621671518279
    sum de = 4.607859233063394e-19
Info: cfl dt = 0.0027059108130421962 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9827e+04 | 13440 |      1 | 2.246e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.218704229912966 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7108777879781303, dt = 0.0027059108130421962 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.3%)
   patch tree reduce : 1.70 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.2%)
   LB compute        : 373.08 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.873065476190476
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-3.25824851045217e-19,1.588396148845433e-18)
    sum a = (3.0876696178461445e-17,3.143251504200917e-17,-2.78771909320746e-17)
    sum e = 1.1963621068762171
    sum de = 1.1926223897340549e-17
Info: cfl dt = 0.002703471538277942 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6944e+04 | 13440 |      1 | 2.360e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.273155116955294 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7135836987911724, dt = 0.002703471538277942 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.5%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.13 us    (0.3%)
   LB compute        : 338.71 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 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: 1.870610119047619
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-1.8207859323115067e-19,1.524309275569995e-18)
    sum a = (1.496877698037144e-17,-1.3186323383477017e-17,-3.5828155817415144e-17)
    sum e = 1.1963620238004367
    sum de = 2.995108501491206e-17
Info: cfl dt = 0.0027130881685007067 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7031e+04 | 13440 |      1 | 2.357e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.29843455873478 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7162871703294504, dt = 0.0027130881685007067 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.5%)
   patch tree reduce : 1.63 us    (0.5%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.00 us    (0.3%)
   LB compute        : 343.98 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8715029761904765
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-3.0665868333667484e-19,1.4230879523592567e-18)
    sum a = (6.8614880396581e-18,-4.2932215667134474e-18,5.983437981510511e-17)
    sum e = 1.1963619415109066
    sum de = -3.474867962816042e-17
Info: cfl dt = 0.00270861995566567 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9584e+04 | 13440 |      1 | 2.256e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.30077098608592 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7190002584979511, dt = 0.0009997415020491784 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.5%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 344.44 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8723958333333333
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,-1.5332934166833742e-19,1.6147496294446785e-18)
    sum a = (2.606598808361736e-18,1.4566287458492054e-17,2.3363558436712913e-17)
    sum e = 1.1963610095189117
    sum de = 2.3798237686056822e-17
Info: cfl dt = 0.00269721980236839 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.4461e+04 | 13440 |      1 | 2.468e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.58410154809721 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 324                                                     [SPH][rank=0]
Info: time since start : 344.11529797900005 (s)                                       [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.99 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.95 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.91 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.74s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.7200000000000003, dt = 0.00269721980236839 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.17 us    (2.3%)
   patch tree reduce : 1.26 us    (0.3%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 372.13 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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: 1.8752232142857141
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,-1.9166167708542177e-19,1.6605687491229121e-18)
    sum a = (-1.12697066126228e-17,8.433113791758558e-18,2.880914583690246e-17)
    sum e = 1.1963618217629766
    sum de = -1.3118846287074604e-17
Info: cfl dt = 0.0027059654120638816 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2260e+04 | 13440 |      1 | 3.180e-01 | 0.0% |   0.1% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.531348983763618 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7226972198023687, dt = 0.0027059654120638816 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (1.3%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 369.20 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.865550595238095
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,1.0541392239698198e-19,1.7423244332546625e-18)
    sum a = (8.394781456341473e-18,1.0273065891778608e-17,4.949183656538304e-17)
    sum e = 1.1963617201520145
    sum de = 2.927345865710862e-18
Info: cfl dt = 0.0026976275022262347 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9142e+04 | 13440 |      1 | 2.272e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.867094767057026 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7254031852144326, dt = 0.0026976275022262347 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.5%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 332.38 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.863764880952381
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-1.9166167708542177e-19,1.9016432023319193e-18)
    sum a = (-8.471446127175642e-18,2.7599281500300734e-17,2.2592120186444093e-17)
    sum e = 1.1963616226124387
    sum de = -5.421010862427522e-20
Info: cfl dt = 0.0027043841970114625 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.2967e+04 | 13440 |      1 | 2.537e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.27297215541912 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7281008127166588, dt = 0.0027043841970114625 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.5%)
   patch tree reduce : 1.55 us    (0.4%)
   gen split merge   : 1.06 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.4%)
   LB compute        : 370.36 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8628720238095238
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,3.7374027031657247e-19,1.9282961543016106e-18)
    sum a = (-4.438884441298368e-17,4.2932215667134474e-18,-2.0709044209079824e-17)
    sum e = 1.1963615437243256
    sum de = -2.47198095326695e-17
Info: cfl dt = 0.00271530385333489 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9030e+04 | 13440 |      1 | 2.277e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.760570948565196 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7308051969136703, dt = 0.00271530385333489 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.26 us    (1.4%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 350.96 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (67.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8722470238095235
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,1.2458009010552416e-19,1.8124007339390197e-18)
    sum a = (2.1619437175235577e-17,-4.523215579215954e-17,-2.821259886697408e-17)
    sum e = 1.1963614796652824
    sum de = 1.702197410802242e-17
Info: cfl dt = 0.002713928994922592 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.4880e+04 | 13440 |      1 | 2.449e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.914941411127415 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7335205007670051, dt = 0.002713928994922592 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.4%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 351.14 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8768601190476188
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,1.4374625781406633e-19,1.7216609086938902e-18)
    sum a = (3.2007500073265434e-17,2.74459521586324e-17,2.5994114954710327e-17)
    sum e = 1.196361427253693
    sum de = -1.680513367352532e-17
Info: cfl dt = 0.0027078512809555404 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9070e+04 | 13440 |      1 | 2.275e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.9403987666088 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.7362344297619278, dt = 0.0027078512809555404 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (1.4%)
   patch tree reduce : 1.94 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 339.28 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8769345238095236
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-2.9707559948240377e-19,1.8764876072144576e-18)
    sum a = (2.5136428949753065e-17,2.069946112522555e-17,-7.326267606590248e-17)
    sum e = 1.196361393863216
    sum de = 9.75781955236954e-19
Info: cfl dt = 0.002710199388427753 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.4319e+04 | 13440 |      1 | 2.474e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.398585724709065 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7389422810428833, dt = 0.0010577189571170376 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.4%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 752.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 347.43 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 1.8765624999999997
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,1.629124255226085e-19,1.6680555333840613e-18)
    sum a = (-1.6770396744974405e-18,1.5639592850170416e-17,-2.5907867200021888e-17)
    sum e = 1.196360934874284
    sum de = -3.9302328752599536e-17
Info: cfl dt = 0.002715247347567795 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 6.0385e+04 | 13440 |      1 | 2.226e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.108041369119178 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 332                                                     [SPH][rank=0]
Info: time since start : 353.332464641 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.93 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.93 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.90 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.76s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.7400000000000003, dt = 0.002715247347567795 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.99 us    (2.4%)
   patch tree reduce : 1.40 us    (0.4%)
   gen split merge   : 562.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 872.00 ns  (0.2%)
   LB compute        : 351.02 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.87641369047619
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,1.0541392239698198e-19,1.6168459290378002e-18)
    sum a = (3.514596003553922e-18,7.819796425085208e-18,1.5864795320745787e-17)
    sum e = 1.1963613816008432
    sum de = -6.071532165918825e-18
Info: cfl dt = 0.0027198298917871194 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8479e+04 | 13440 |      1 | 2.298e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.53182699350468 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7427152473475681, dt = 0.0027198298917871194 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.8%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 322.10 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8743303571428571
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,2.0124476093969286e-19,1.7159709526554168e-18)
    sum a = (9.156636622756025e-18,2.2232754541908925e-17,-1.4875341912792297e-17)
    sum e = 1.1963614061893921
    sum de = -7.643625316022806e-18
Info: cfl dt = 0.0027019972146421736 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.5668e+04 | 13440 |      1 | 2.414e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.555917105535805 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7454350772393552, dt = 0.0027019972146421736 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.06 us    (1.4%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 350.91 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.857217261904762
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,3.9290643802511465e-19,1.6366110394872344e-18)
    sum a = (-8.8164371459294e-19,-2.606598808361736e-18,-1.8255774742386424e-18)
    sum e = 1.196361435624697
    sum de = 1.870248747537495e-17
Info: cfl dt = 0.002721051581059155 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9208e+04 | 13440 |      1 | 2.270e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.85185321135162 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7481370744539974, dt = 0.002721051581059155 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.7%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 326.86 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (70.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8555059523809523
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,2.2999401250250614e-19,1.6503867225277491e-18)
    sum a = (-2.0162808429386372e-17,-2.86725868919791e-17,3.949428433441472e-17)
    sum e = 1.196361493653637
    sum de = -3.946495907847236e-17
Info: cfl dt = 0.002714829400535794 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.4011e+04 | 13440 |      1 | 2.488e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.36618877406677 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7508581260350565, dt = 0.002714829400535794 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.33 us    (1.6%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 318.39 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8612351190476193
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.4374625781406633e-19,1.8159943903843712e-18)
    sum a = (2.138944316273307e-17,-6.792489835907348e-17,4.678940691847859e-17)
    sum e = 1.1963615529462963
    sum de = 4.87890977618477e-19
Info: cfl dt = 0.002724063875067531 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0537e+04 | 13440 |      1 | 2.659e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.7499360038606 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.7535729554355923, dt = 0.002724063875067531 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.3%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.2%)
   LB compute        : 386.10 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 1.8744791666666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-4.6957110885928335e-19,1.9486602074919366e-18)
    sum a = (3.239082342743628e-17,-1.1844691643879065e-17,-2.466925361185735e-17)
    sum e = 1.1963616265265542
    sum de = -1.5341460740669888e-17
Info: cfl dt = 0.0026821351100924516 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.5704e+04 | 13440 |      1 | 2.413e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.64476017896269 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7562970193106598, dt = 0.0026821351100924516 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.95 us    (1.3%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 352.79 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (66.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.874330357142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-1.5332934166833742e-19,1.7818546541535305e-18)
    sum a = (-4.0555610871275245e-17,-1.8706179683537164e-17,1.9152990968242555e-17)
    sum e = 1.1963616788817741
    sum de = 1.3552527156068805e-17
Info: cfl dt = 0.0026902960158081747 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6002e+04 | 13440 |      1 | 2.400e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.23332534960129 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7589791544207523, dt = 0.0010208455792480864 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.4%)
   patch tree reduce : 1.36 us    (0.4%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 355.01 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 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: 1.874404761904762
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-1.0541392239698198e-19,1.8663055806192944e-18)
    sum a = (2.0392802441888877e-17,-1.3377985060562439e-17,2.4218848670706607e-17)
    sum e = 1.1963610959717765
    sum de = -2.4448758989548125e-17
Info: cfl dt = 0.002694699973330651 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9343e+04 | 13440 |      1 | 2.724e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.49245894696234 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 340                                                     [SPH][rank=0]
Info: time since start : 362.602537912 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.93 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.93 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.90 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.78s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.7600000000000003, dt = 0.002694699973330651 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.83 us    (2.1%)
   patch tree reduce : 1.32 us    (0.3%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.2%)
   LB compute        : 407.78 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8750744047619043
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-2.8749251562813265e-19,1.934884524451422e-18)
    sum a = (1.0503059904281113e-17,3.1547512048260424e-17,5.881018772817988e-17)
    sum e = 1.1963617511750153
    sum de = 8.456776945386935e-18
Info: cfl dt = 0.0026970728153278348 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9480e+04 | 13440 |      1 | 2.260e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.93262144515797 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.762694699973331, dt = 0.0026970728153278348 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.18 us    (1.4%)
   patch tree reduce : 1.46 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.2%)
   LB compute        : 365.11 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.875297619047619
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.3416317395979523e-19,2.135829814020669e-18)
    sum a = (2.7407619823215314e-17,-4.0095622846270236e-17,-7.235228309974671e-18)
    sum e = 1.196361841236054
    sum de = 3.810970636286548e-17
Info: cfl dt = 0.0026903725207966162 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.2158e+04 | 13440 |      1 | 2.577e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.680180168817664 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7653917727886588, dt = 0.0026903725207966162 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.3%)
   patch tree reduce : 1.77 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.2%)
   LB compute        : 386.09 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 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: 1.8623511904761902
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,-2.779094317738616e-19,2.02053333639897e-18)
    sum a = (-3.760402104415975e-17,3.035920965033081e-17,-3.2247077169622213e-18)
    sum e = 1.196361902578585
    sum de = 3.108949729602184e-17
Info: cfl dt = 0.002686949684520318 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9118e+04 | 13440 |      1 | 2.273e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.60254696490621 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7680821453094554, dt = 0.002686949684520318 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.4%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 359.01 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8613095238095236
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,-1.9166167708542177e-20,2.028169856345342e-18)
    sum a = (-6.51649702090434e-19,-1.346423281525088e-17,-2.674638703727061e-17)
    sum e = 1.1963619579387055
    sum de = -9.432558900623889e-18
Info: cfl dt = 0.0026871411026583173 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8897e+04 | 13440 |      1 | 2.282e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.389065251079785 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7707690949939757, dt = 0.0026871411026583173 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (1.6%)
   patch tree reduce : 1.72 us    (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.3%)
   LB compute        : 365.02 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8616071428571428
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-1.724955093768796e-19,1.9208093700404612e-18)
    sum a = (-5.378026659016935e-17,-6.20504679564053e-18,1.5102940154331236e-17)
    sum e = 1.1963620065329896
    sum de = 1.259029772798792e-17
Info: cfl dt = 0.002716897760149905 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9306e+04 | 13440 |      1 | 2.266e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.68632098923749 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.773456236096634, dt = 0.002716897760149905 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.50 us    (1.6%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 315.40 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.76 us    (72.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8720982142857145
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,0,2.0266724994931123e-18)
    sum a = (8.735939241553525e-17,-2.0370042617734982e-17,7.474805406331449e-19)
    sum e = 1.196362067363285
    sum de = -5.033916805532307e-18
Info: cfl dt = 0.002715423131851626 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1243e+04 | 13440 |      1 | 2.623e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.29151938737722 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.776173133856784, dt = 0.002715423131851626 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.01 us    (1.2%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 389.67 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8694940476190478
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,-5.174865281306388e-19,2.0090036886368e-18)
    sum a = (-7.532303909457076e-18,-8.941017236034926e-18,3.080961459148155e-17)
    sum e = 1.1963620991560844
    sum de = -6.938893903907228e-18
Info: cfl dt = 0.0027154243733457325 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9199e+04 | 13440 |      1 | 2.270e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.05825224631732 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7788885569886356, dt = 0.0011114430113647877 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.4%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 376.49 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8697172619047622
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,5.749850312562653e-20,2.0769836897280355e-18)
    sum a = (-2.8749251562813265e-18,3.188291998315991e-17,-1.0038280337348965e-17)
    sum e = 1.1963612779408017
    sum de = -2.8731357570865868e-18
Info: cfl dt = 0.0027162804753673637 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7711e+04 | 13440 |      1 | 2.329e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.181047774028773 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 348                                                     [SPH][rank=0]
Info: time since start : 371.78754220800005 (s)                                       [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.94 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.93 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.90 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.80s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.7800000000000004, dt = 0.0027162804753673637 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.11 us    (2.3%)
   patch tree reduce : 1.28 us    (0.3%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 852.00 ns  (0.2%)
   LB compute        : 357.01 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (69.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8704613095238096
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,-2.1082784479396395e-19,2.0247259355852135e-18)
    sum a = (2.5184344369024422e-17,2.5222676704441504e-17,1.9515950269223072e-17)
    sum e = 1.1963621164641822
    sum de = -1.3173056395698879e-17
Info: cfl dt = 0.0027129334523933284 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9876e+04 | 13440 |      1 | 2.245e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.56425126296267 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7827162804753677, dt = 0.0027129334523933284 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.5%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 321.81 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.80 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8734374999999999
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,-2.779094317738616e-19,2.113219725551998e-18)
    sum a = (9.42017142874848e-18,2.1197781485647648e-17,-1.2002812527474538e-17)
    sum e = 1.1963621437723566
    sum de = 2.5478751053409354e-18
Info: cfl dt = 0.002718920640758932 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7802e+04 | 13440 |      1 | 2.325e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.003312775452635 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.785429213927761, dt = 0.002718920640758932 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.97 us    (1.4%)
   patch tree reduce : 1.78 us    (0.5%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 346.39 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (65.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8639136904761906
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,-6.133173666733497e-19,2.043143424867641e-18)
    sum a = (8.998515739160552e-18,-1.3320486557436814e-17,-1.061326536860523e-17)
    sum e = 1.1963621663545487
    sum de = 7.860465750519907e-19
Info: cfl dt = 0.0027109948011855393 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9295e+04 | 13440 |      1 | 2.267e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.18363447749829 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.78814813456852, dt = 0.0027109948011855393 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.42 us    (1.3%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 1.11 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 397.10 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.862276785714286
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229102,2.8749251562813265e-19,2.0022655828017657e-18)
    sum a = (-6.3919169307988165e-18,7.513137741748534e-18,-1.5522200072955597e-17)
    sum e = 1.1963621784163443
    sum de = 5.5294310796760726e-18
Info: cfl dt = 0.0027039894862640134 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8517e+04 | 13440 |      1 | 2.297e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.49256883356952 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7908591293697055, dt = 0.0027039894862640134 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.4%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 391.69 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8619791666666667
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,-2.8749251562813265e-19,1.9661044148204145e-18)
    sum a = (2.553891847163245e-17,-3.11258563586725e-17,2.1866201584483056e-17)
    sum e = 1.196362191791708
    sum de = 2.867714746224159e-17
Info: cfl dt = 0.0027387170902881354 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1898e+04 | 13440 |      1 | 2.590e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.588863910362385 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7935631188559695, dt = 0.0027387170902881354 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.52 us    (1.5%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 358.46 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8738095238095238
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-3.7374027031657247e-19,2.081326024599502e-18)
    sum a = (-3.989437808533054e-17,1.276466769388909e-17,-6.783026540601254e-17)
    sum e = 1.1963622395362095
    sum de = 1.2034644114589099e-17
Info: cfl dt = 0.0027283579614330693 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9507e+04 | 13440 |      1 | 2.259e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.6531180083515 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.7963018359462577, dt = 0.0027283579614330693 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.4%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 342.11 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (66.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8752976190476192
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,-3.25824851045217e-19,1.7680041032704045e-18)
    sum a = (2.3708549455466672e-17,4.454217375465202e-17,-8.023197379892112e-17)
    sum e = 1.196362257782557
    sum de = 3.198396408832238e-18
Info: cfl dt = 0.002734182866595977 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9398e+04 | 13440 |      1 | 2.263e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.40898847057619 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7990301939076908, dt = 0.0009698060923095664 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.7%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 314.21 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8756696428571427
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,1.724955093768796e-19,1.6741946964782038e-18)
    sum a = (1.857201650957737e-17,-3.1355850371175e-17,1.522153081702784e-17)
    sum e = 1.1963613370884156
    sum de = -4.689174395999807e-18
Info: cfl dt = 0.0027292889590070546 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.3511e+04 | 13440 |      1 | 2.512e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.90057112994691 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 356                                                     [SPH][rank=0]
Info: time since start : 380.820627435 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.93 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.92 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.95 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.82s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.8000000000000004, dt = 0.0027292889590070546 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.11 us    (2.2%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 551.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 389.50 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8773065476190476
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,2.2999401250250614e-19,1.7493620104601425e-18)
    sum a = (4.34880345306822e-17,2.5491003052361097e-17,9.973594521332635e-18)
    sum e = 1.1963622808025682
    sum de = -1.4203048459560108e-17
Info: cfl dt = 0.002715536355772136 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6679e+04 | 13440 |      1 | 2.371e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.43562946436682 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8027292889590074, dt = 0.002715536355772136 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.58 us    (1.6%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 337.00 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (67.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8774553571428572
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.8207859323115067e-19,1.777662054967287e-18)
    sum a = (1.4029634762652875e-17,9.966407208441932e-18,3.5130387524276025e-17)
    sum e = 1.1963623217646224
    sum de = 1.485356976305141e-17
Info: cfl dt = 0.002718889404795724 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9871e+04 | 13440 |      1 | 2.245e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.54899755156186 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8054448253147796, dt = 0.002718889404795724 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.6%)
   patch tree reduce : 1.81 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 350.47 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (70.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8730654761904764
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,4.6957110885928335e-19,1.894231285913381e-18)
    sum a = (-4.7934585439063984e-17,-8.160954210297259e-17,1.9971146752300948e-17)
    sum e = 1.1963623693267949
    sum de = -6.0173220572945496e-18
Info: cfl dt = 0.0027301802443039313 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.2868e+04 | 13440 |      1 | 2.542e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.50217601868507 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8081637147195753, dt = 0.0027301802443039313 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.5%)
   patch tree reduce : 1.69 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 350.38 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.84 us    (71.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8582589285714288
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,-6.708158697989762e-20,1.9374300311002127e-18)
    sum a = (1.3588812905356403e-17,1.4489622787657885e-17,5.739249026048865e-17)
    sum e = 1.1963624257617573
    sum de = 2.108773225484306e-17
Info: cfl dt = 0.00271263605208725 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9275e+04 | 13440 |      1 | 2.267e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.34801853906998 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8108938949638792, dt = 0.00271263605208725 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.22 us    (1.5%)
   patch tree reduce : 1.60 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 322.75 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8581845238095234
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-3.162417671909459e-19,2.134631928538885e-18)
    sum a = (-1.910866920541655e-17,-1.3186323383477017e-17,-1.3347438980776951e-17)
    sum e = 1.196362454676831
    sum de = 5.3939058081153846e-18
Info: cfl dt = 0.0026991825690153093 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9739e+04 | 13440 |      1 | 2.250e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.406520572139115 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8136065310159665, dt = 0.0026991825690153093 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.3%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 1.09 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 385.04 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (68.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8648809523809522
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-3.354079348994881e-19,2.019934393658078e-18)
    sum a = (-8.816437145929401e-18,-4.3085545008802815e-17,2.4852530090570285e-17)
    sum e = 1.196362478112003
    sum de = -9.703609443745265e-18
Info: cfl dt = 0.0027373223453135034 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9605e+04 | 13440 |      1 | 2.255e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.0942409059829 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.8163057135849818, dt = 0.0027373223453135034 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.24 us    (1.4%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 353.26 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8754464285714285
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-2.2999401250250614e-19,2.134332457168439e-18)
    sum a = (-1.5984583868924174e-17,-7.819796425085208e-18,-3.919481296396875e-18)
    sum e = 1.196362536782279
    sum de = -7.535205098774256e-18
Info: cfl dt = 0.0027179351556986713 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9944e+04 | 13440 |      1 | 2.242e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.951462514953384 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8190430359302954, dt = 0.0009569640697050241 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.84 us    (1.3%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 369.33 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (65.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8763392857142855
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-2.1082784479396395e-19,2.0908342406111615e-18)
    sum a = (1.2477175178260957e-17,2.2922736579416443e-17,4.426666009384173e-17)
    sum e = 1.1963614667583926
    sum de = 1.1600963245594897e-17
Info: cfl dt = 0.0027134960748494605 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9715e+04 | 13440 |      1 | 2.251e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.306613600346555 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 364                                                     [SPH][rank=0]
Info: time since start : 389.880725288 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.93 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.93 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.89 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.84s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.8200000000000004, dt = 0.0027134960748494605 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.28 us    (2.4%)
   patch tree reduce : 1.41 us    (0.4%)
   gen split merge   : 561.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 358.94 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.76 us    (72.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8764880952380953
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,-1.3416317395979523e-19,2.2287408067015316e-18)
    sum a = (4.415885040048118e-17,3.3042473129526713e-17,-3.682779125196379e-17)
    sum e = 1.1963625175240316
    sum de = -1.5178830414797062e-18
Info: cfl dt = 0.002698201696714125 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.3448e+04 | 13440 |      1 | 2.515e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.847921011873154 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8227134960748499, dt = 0.002698201696714125 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.7%)
   patch tree reduce : 1.37 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 324.32 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8774553571428572
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-3.8332335417084355e-20,2.0291431382992914e-18)
    sum a = (-4.6094633339043936e-18,6.301835942568668e-17,-3.554365801549147e-17)
    sum e = 1.1963625164913387
    sum de = 1.4799359654427136e-17
Info: cfl dt = 0.0027236456479483627 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0081e+04 | 13440 |      1 | 2.237e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.42269181552453 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.825411697771564, dt = 0.0027236456479483627 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.07 us    (1.5%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 312.09 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8761160714285718
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,3.8332335417084355e-20,1.928969964885114e-18)
    sum a = (3.2553735852958885e-17,-2.74459521586324e-17,4.430738820022238e-17)
    sum e = 1.1963625393409247
    sum de = 8.72782748850831e-18
Info: cfl dt = 0.0027203654043325685 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9334e+04 | 13440 |      1 | 2.265e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.287253599214914 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8281353434195123, dt = 0.0027203654043325685 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.5%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 324.95 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (69.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8639880952380954
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,-1.9166167708542177e-19,2.1570174134797212e-18)
    sum a = (6.300877634183241e-18,-1.7556209621024633e-17,-8.739772475095234e-18)
    sum e = 1.1963625376516531
    sum de = -4.0115480381963664e-18
Info: cfl dt = 0.002721376845198544 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.2632e+04 | 13440 |      1 | 2.554e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.35126549596349 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8308557088238449, dt = 0.002721376845198544 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.5%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 346.40 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8629464285714286
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-5.270696119849099e-19,2.0733151654400723e-18)
    sum a = (-8.40915608212288e-18,1.2956329370974512e-17,6.420666182361629e-18)
    sum e = 1.1963625404290816
    sum de = 1.0842021724855044e-19
Info: cfl dt = 0.0027261935811478994 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.1463e+04 | 13440 |      1 | 2.612e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.51346871481472 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8335770856690434, dt = 0.0027261935811478994 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.4%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 348.96 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.864732142857143
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,2.20410928648235e-19,2.1105244832179842e-18)
    sum a = (-2.609952887710731e-17,-5.1365329458893034e-17,-9.34063183275803e-17)
    sum e = 1.1963625462392906
    sum de = -1.463672932855431e-17
Info: cfl dt = 0.002731310452708893 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9881e+04 | 13440 |      1 | 2.244e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.72711999823902 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8363032792501913, dt = 0.002731310452708893 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.4%)
   patch tree reduce : 1.52 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 358.78 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.874107142857143
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,-4.791541927135544e-19,1.725554036509688e-18)
    sum a = (-1.1806359308461982e-17,-2.0009479087718033e-17,-2.882591623364744e-17)
    sum e = 1.1963625492936034
    sum de = 1.870248747537495e-17
Info: cfl dt = 0.0027115369789115274 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9612e+04 | 13440 |      1 | 2.255e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.612180983799725 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8390345897029002, dt = 0.0009654102971001777 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.00 us    (1.4%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 341.48 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8721726190476191
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-4.120726057336568e-19,1.7765764712494202e-18)
    sum a = (-1.8869092109059772e-17,4.0785604883777753e-17,5.912762738085262e-18)
    sum e = 1.19636153363636
    sum de = -1.566672139241554e-17
Info: cfl dt = 0.0026854321316563904 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0175e+04 | 13440 |      1 | 2.233e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.560745980505367 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 372                                                     [SPH][rank=0]
Info: time since start : 399.099227304 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.93 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.94 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.96 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.86s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.8400000000000004, dt = 0.0026854321316563904 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.30 us    (2.5%)
   patch tree reduce : 1.27 us    (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 862.00 ns  (0.2%)
   LB compute        : 343.22 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.80 us    (66.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8720238095238098
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-2.2999401250250614e-19,1.809555755919783e-18)
    sum a = (2.4628525505476698e-17,2.4149371312763143e-17,-4.833707496094337e-17)
    sum e = 1.1963624900417378
    sum de = 1.235990476633475e-17
Info: cfl dt = 0.002691116873252197 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9062e+04 | 13440 |      1 | 2.276e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.48407074692365 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8426854321316568, dt = 0.002691116873252197 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.5%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.29 us    (0.3%)
   LB compute        : 339.41 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 26.40 us   (6.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (72.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8734375000000003
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,2.6832634791959046e-19,1.6050168099051843e-18)
    sum a = (1.751787728560755e-17,3.403911385037091e-17,6.454206975851578e-17)
    sum e = 1.1963624827733093
    sum de = 2.8189256484623115e-18
Info: cfl dt = 0.002692094333835838 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9398e+04 | 13440 |      1 | 2.263e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.81590833029315 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.845376549004909, dt = 0.002692094333835838 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (1.7%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.15 us    (0.3%)
   LB compute        : 359.22 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.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: 1.8767113095238093
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,5.174865281306388e-19,1.9390771236376655e-18)
    sum a = (5.481523964643063e-18,-8.870102415513319e-17,-3.34449626514061e-17)
    sum e = 1.196362461686318
    sum de = -1.7564075194265172e-17
Info: cfl dt = 0.002682865210907082 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.2705e+04 | 13440 |      1 | 2.550e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.005720194607854 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8480686433387449, dt = 0.002682865210907082 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.5%)
   patch tree reduce : 1.44 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 932.00 ns  (0.2%)
   LB compute        : 357.05 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8662202380952382
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,2.874925156281327e-20,1.7090831111351594e-18)
    sum a = (1.417338102046694e-17,7.05314971674352e-18,3.757527179259694e-17)
    sum e = 1.1963624314202592
    sum de = -3.2255014631443757e-18
Info: cfl dt = 0.0026945524823044306 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.2442e+04 | 13440 |      1 | 2.563e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.68622706416556 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.850751508549652, dt = 0.0026945524823044306 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.3%)
   patch tree reduce : 1.74 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.3%)
   LB compute        : 361.73 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (66.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.866592261904762
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-6.708158697989762e-20,1.903739501925041e-18)
    sum a = (3.459493271391863e-17,7.175813190078191e-17,3.5361579422260315e-18)
    sum e = 1.1963624193285318
    sum de = 6.640738306473715e-18
Info: cfl dt = 0.0027088784639396003 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7049e+04 | 13440 |      1 | 2.356e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.17561417904609 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8534460610319564, dt = 0.0027088784639396003 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.35 us    (1.4%)
   patch tree reduce : 1.48 us    (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.3%)
   LB compute        : 364.29 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8665178571428571
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,2.6832634791959046e-19,1.8687013515828622e-18)
    sum a = (-9.094346577703264e-18,-1.3339652725145356e-17,4.7493763581767514e-17)
    sum e = 1.1963624144128404
    sum de = 3.290553593493506e-17
Info: cfl dt = 0.002718096301613522 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9279e+04 | 13440 |      1 | 2.267e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.012664249047006 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.856154939495896, dt = 0.002718096301613522 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (1.5%)
   patch tree reduce : 1.62 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.31 us    (0.4%)
   LB compute        : 342.41 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 1.8745535714285715
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-1.4374625781406633e-19,2.0650048349101966e-18)
    sum a = (5.55531371032095e-17,-1.4489622787657885e-17,6.7944064526782016e-18)
    sum e = 1.1963624128773882
    sum de = 2.0316932272841648e-17
Info: cfl dt = 0.0027085582255004016 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.4138e+04 | 13440 |      1 | 2.483e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.41543054039287 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8588730357975096, dt = 0.00112696420249081 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.04 us    (1.2%)
   patch tree reduce : 1.96 us    (0.5%)
   gen split merge   : 1.03 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 384.75 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8783482142857142
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,6.324835343818918e-19,2.0070571247289013e-18)
    sum a = (-8.459467272357803e-18,9.583083854271088e-18,2.285086345050941e-17)
    sum e = 1.196361612633079
    sum de = -4.8043708768263915e-18
Info: cfl dt = 0.0027010288168703204 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9924e+04 | 13440 |      1 | 2.243e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.08893372887279 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 380                                                     [SPH][rank=0]
Info: time since start : 408.28212577100004 (s)                                       [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.99 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.99 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.95 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.88s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.8600000000000004, dt = 0.0027010288168703204 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.54 us    (2.3%)
   patch tree reduce : 1.64 us    (0.4%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 393.27 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (72.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8808035714285714
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-2.1082784479396395e-19,2.0801281391177184e-18)
    sum a = (8.888310274836434e-18,-1.6482904229346272e-17,5.60370828378502e-17)
    sum e = 1.1963623871571307
    sum de = 2.256495771485456e-17
Info: cfl dt = 0.00268243474850154 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.9319e+04 | 13440 |      1 | 2.725e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.68189287043621 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8627010288168707, dt = 0.00268243474850154 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.28 us    (1.3%)
   patch tree reduce : 1.45 us    (0.3%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.2%)
   LB compute        : 397.59 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (68.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8810267857142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-2.9707559948240377e-19,2.272987701684924e-18)
    sum a = (3.162417671909459e-18,-5.9798443250651594e-18,3.5615531144398503e-17)
    sum e = 1.1963623857829297
    sum de = -1.3240819031479223e-17
Info: cfl dt = 0.002667914086971588 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8927e+04 | 13440 |      1 | 2.281e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.339630155476485 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8653834635653722, dt = 0.002667914086971588 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (1.4%)
   patch tree reduce : 1.75 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.24 us    (0.3%)
   LB compute        : 368.55 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (73.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8796875000000002
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,3.354079348994881e-19,2.3409677027761593e-18)
    sum a = (1.9932814416883866e-18,2.606598808361736e-18,2.3447410420437787e-17)
    sum e = 1.1963623828972874
    sum de = 4.797594613248357e-18
Info: cfl dt = 0.002723357500181851 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9472e+04 | 13440 |      1 | 2.260e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.499751904654985 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8680513776523437, dt = 0.002723357500181851 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.65 us    (1.5%)
   patch tree reduce : 1.99 us    (0.5%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.23 us    (0.3%)
   LB compute        : 367.76 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8654761904761907
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,9.583083854271089e-21,2.379000566822798e-18)
    sum a = (1.1403869786582596e-17,1.786286830436131e-17,-4.410614343928269e-18)
    sum e = 1.1963624300203812
    sum de = 7.26415455565288e-18
Info: cfl dt = 0.002671770368655716 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.2686e+04 | 13440 |      1 | 2.551e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.433021229660035 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8707747351525256, dt = 0.002671770368655716 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.96 us    (1.3%)
   patch tree reduce : 1.77 us    (0.5%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 354.54 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8607886904761908
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,-1.1499700625125307e-19,2.343064002369281e-18)
    sum a = (-2.834676204093388e-17,-1.786286830436131e-17,-3.6911643235688665e-17)
    sum e = 1.1963624082970952
    sum de = -2.4421653935235987e-17
Info: cfl dt = 0.0026966269685835026 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8571e+04 | 13440 |      1 | 2.295e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.916145839448745 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8734465055211813, dt = 0.0026966269685835026 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.08 us    (1.4%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 352.47 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 1.8606398809523808
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,3.8332335417084355e-20,2.1999166872961068e-18)
    sum a = (-1.12697066126228e-17,2.3996041971094807e-17,3.646363406550149e-18)
    sum e = 1.1963624412000138
    sum de = -1.5802246663976227e-17
Info: cfl dt = 0.0026991586947248073 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8914e+04 | 13440 |      1 | 2.281e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.55456932097223 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8761431324897648, dt = 0.0026991586947248073 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (1.6%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 350.49 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 1.8645089285714285
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.9645321901255733e-19,2.262206732348869e-18)
    sum a = (-6.4398323500701715e-18,2.2386083883577264e-17,6.800755245731656e-17)
    sum e = 1.196362466892358
    sum de = -7.94178091345632e-18
Info: cfl dt = 0.0026842975940963225 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9037e+04 | 13440 |      1 | 2.277e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.68304667211138 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8788422911844896, dt = 0.001157708815510805 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (1.5%)
   patch tree reduce : 1.94 us    (0.5%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.32 us    (0.4%)
   LB compute        : 350.89 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (68.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8727678571428572
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.0541392239698198e-19,2.4353011844666405e-18)
    sum a = (7.800630257376665e-18,-3.986562883376773e-18,6.230681544950705e-17)
    sum e = 1.1963617243220466
    sum de = -5.421010862427522e-18
Info: cfl dt = 0.0026819984042483263 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.2858e+04 | 13440 |      1 | 2.543e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.391332133612327 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 388                                                     [SPH][rank=0]
Info: time since start : 417.692555512 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.93 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.93 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.91 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.90s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.8800000000000004, dt = 0.0026819984042483263 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.88 us    (2.3%)
   patch tree reduce : 1.25 us    (0.3%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.2%)
   LB compute        : 363.78 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8790178571428569
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.1499700625125307e-19,2.600010438211925e-18)
    sum a = (3.794901206291351e-17,2.1772766516903912e-17,-1.7156115870108816e-17)
    sum e = 1.1963624777858362
    sum de = -8.40256683676266e-18
Info: cfl dt = 0.002673156069484836 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3348e+04 | 13440 |      1 | 3.101e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.140735386213724 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8826819984042488, dt = 0.002673156069484836 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.92 us    (1.3%)
   patch tree reduce : 1.36 us    (0.3%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.02 us    (0.3%)
   LB compute        : 375.03 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (66.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8791666666666664
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-4.887372765678255e-19,2.438894840911992e-18)
    sum a = (-1.698122458976837e-17,-5.9798443250651594e-18,-4.3674904665840486e-18)
    sum e = 1.1963625244725855
    sum de = -1.713039432527097e-17
Info: cfl dt = 0.0027063739520596162 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9066e+04 | 13440 |      1 | 2.275e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.292990452662174 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8853551544737336, dt = 0.0027063739520596162 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (1.7%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 354.92 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.29 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: 1.879613095238095
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,6.51649702090434e-19,2.451772109841169e-18)
    sum a = (-3.737402703165724e-17,-8.35644912092439e-18,-5.602510398303235e-17)
    sum e = 1.1963625941467506
    sum de = 1.0462550964485118e-17
Info: cfl dt = 0.002688178227733337 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8768e+04 | 13440 |      1 | 2.287e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.60247073399891 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8880615284257932, dt = 0.002688178227733337 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (1.4%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.2%)
   LB compute        : 407.06 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 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: 1.8777529761904759
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-4.8394573464069e-19,2.2310617098224877e-18)
    sum a = (-3.162417671909459e-18,-6.278836541318417e-17,-2.786281630629319e-17)
    sum e = 1.1963626303009778
    sum de = -3.4193026014761596e-17
Info: cfl dt = 0.0027047789226962997 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6708e+04 | 13440 |      1 | 2.370e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.832504494271376 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8907497066535266, dt = 0.0027047789226962997 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.94 us    (1.2%)
   patch tree reduce : 1.68 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.01 us    (0.2%)
   LB compute        : 410.12 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8659970238095238
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-1.8687013515828623e-19,2.188087568163491e-18)
    sum a = (-3.8332335417084355e-20,4.983203604220966e-18,3.1945210028212673e-17)
    sum e = 1.196362689395254
    sum de = -9.147955830346444e-19
Info: cfl dt = 0.0026954550150664293 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9127e+04 | 13440 |      1 | 2.273e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.83723545314551 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8934544855762229, dt = 0.0026954550150664293 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.92 us    (1.6%)
   patch tree reduce : 1.53 us    (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.2%)
   LB compute        : 359.27 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (69.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8658482142857142
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-1.0541392239698198e-19,2.3527968219087752e-18)
    sum a = (1.9319497050210515e-17,7.359808400080196e-18,-1.8332439413220593e-17)
    sum e = 1.1963627245958568
    sum de = 5.251604272976662e-18
Info: cfl dt = 0.0026863483021003155 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9540e+04 | 13440 |      1 | 2.257e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.98741543094086 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8961499405912893, dt = 0.0026863483021003155 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.6%)
   patch tree reduce : 1.60 us    (0.4%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 342.25 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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: 1.866220238095238
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,4.6957110885928335e-19,2.240944265047205e-18)
    sum a = (-3.998062584001898e-17,-6.056508995899328e-17,2.0392802441888877e-17)
    sum e = 1.196362751483726
    sum de = -8.754932542820448e-18
Info: cfl dt = 0.0026792714529594534 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6440e+04 | 13440 |      1 | 2.381e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.61159477734448 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8988362888933896, dt = 0.001163711106610843 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.82 us    (1.6%)
   patch tree reduce : 1.45 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 336.51 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (67.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8662946428571425
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-6.51649702090434e-19,2.3156623719734747e-18)
    sum a = (-3.0435874321164975e-17,-3.82173384108331e-17,-2.015082957456853e-17)
    sum e = 1.1963618940822476
    sum de = -1.111307226797642e-18
Info: cfl dt = 0.00267742896808829 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7644e+04 | 13440 |      1 | 2.332e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.967984907910964 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 396                                                     [SPH][rank=0]
Info: time since start : 426.841843072 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.94 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.94 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.92 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.92s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.9000000000000005, dt = 0.00267742896808829 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.93 us    (2.5%)
   patch tree reduce : 1.35 us    (0.3%)
   gen split merge   : 581.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.2%)
   LB compute        : 374.98 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (68.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.875372023809524
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,4.791541927135544e-21,2.2631051464602067e-18)
    sum a = (7.275477262162611e-17,1.3607979073064945e-17,-3.4990234922907314e-17)
    sum e = 1.1963627567370605
    sum de = -8.131516293641283e-20
Info: cfl dt = 0.002672491796199398 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9516e+04 | 13440 |      1 | 2.258e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.683258540298354 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9026774289680888, dt = 0.002672491796199398 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.16 us    (1.3%)
   patch tree reduce : 1.56 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.2%)
   LB compute        : 375.80 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8764136904761906
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,5.174865281306388e-19,2.1349313999093308e-18)
    sum a = (-1.460461979390914e-17,-9.813077866773595e-18,-1.472201257112396e-17)
    sum e = 1.1963627775958634
    sum de = -2.268693045925918e-17
Info: cfl dt = 0.0026900124241959456 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8940e+04 | 13440 |      1 | 2.280e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.19166644151877 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9053499207642882, dt = 0.0026900124241959456 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.6%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.28 us    (0.3%)
   LB compute        : 348.33 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.876190476190476
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-3.8332335417084353e-19,2.1144176110337817e-18)
    sum a = (3.82173384108331e-17,-4.944871268803882e-17,-2.79586471448359e-18)
    sum e = 1.1963628010518432
    sum de = -1.2549640146519714e-17
Info: cfl dt = 0.002661362262510422 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9580e+04 | 13440 |      1 | 2.256e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.929812311343554 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9080399331884842, dt = 0.002661362262510422 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.29 us    (1.3%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 381.36 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 us    (69.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8752232142857141
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,5.318611539120454e-19,2.135829814020669e-18)
    sum a = (-3.8753991106672285e-17,-9.008098823014823e-18,-2.3913387872851717e-17)
    sum e = 1.1963627866360302
    sum de = -6.776263578034403e-19
Info: cfl dt = 0.0026376198841102007 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0873e+04 | 13440 |      1 | 2.642e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.26544755190514 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9107012954509947, dt = 0.0026376198841102007 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.5%)
   patch tree reduce : 1.85 us    (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 352.80 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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: 1.867708333333333
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,-3.545741026080303e-19,2.050330737758344e-18)
    sum a = (2.9515898271154955e-17,-3.449910187537592e-19,-6.289617510654472e-17)
    sum e = 1.1963627761310685
    sum de = 1.0245710529988017e-17
Info: cfl dt = 0.0026185861005046333 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9203e+04 | 13440 |      1 | 2.270e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.82731899739518 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9133389153351048, dt = 0.0026185861005046333 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.38 us    (1.4%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 1.12 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 352.69 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (72.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8680803571428566
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,-1.082888475532633e-18,1.830369016165778e-18)
    sum a = (2.2501080889828518e-17,-5.24386348505714e-17,3.3271269256547436e-18)
    sum e = 1.1963627710866263
    sum de = -2.2659825404947043e-17
Info: cfl dt = 0.0026881354068596123 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.3297e+04 | 13440 |      1 | 2.522e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.38262335735837 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9159575014356094, dt = 0.0026881354068596123 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.6%)
   patch tree reduce : 1.90 us    (0.5%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.19 us    (0.3%)
   LB compute        : 342.23 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.89 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8683035714285712
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.8687013515828623e-19,1.9050871230920477e-18)
    sum a = (5.519856300060147e-18,-4.408218572964701e-17,-4.688164410057595e-17)
    sum e = 1.196362836724194
    sum de = 1.089623183347932e-17
Info: cfl dt = 0.0026834724350653636 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8990e+04 | 13440 |      1 | 2.278e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.47495377554606 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.918645636842469, dt = 0.0013543631575314574 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.05 us    (1.3%)
   patch tree reduce : 1.63 us    (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 368.05 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (69.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8683035714285712
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,4.791541927135544e-21,1.7917372093782477e-18)
    sum a = (-1.0733053916783619e-18,3.3732455167034233e-18,6.110413842579603e-18)
    sum e = 1.1963620590215045
    sum de = -2.9815559743351372e-18
Info: cfl dt = 0.0026734000504259636 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0003e+04 | 13440 |      1 | 2.240e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 21.767616387475677 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 404                                                     [SPH][rank=0]
Info: time since start : 436.08705387900005 (s)                                       [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 1.94 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.94 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.95 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.94s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.9200000000000005, dt = 0.0026734000504259636 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.79 us    (2.6%)
   patch tree reduce : 1.31 us    (0.3%)
   gen split merge   : 571.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.2%)
   LB compute        : 353.02 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (67.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8751488095238091
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-6.037342828190786e-19,1.8430965494097316e-18)
    sum a = (5.803515582146571e-17,-1.8859509025205503e-17,9.029660761686934e-18)
    sum e = 1.1963628289403838
    sum de = -1.1438332919722072e-17
Info: cfl dt = 0.0026820437151953724 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.5953e+04 | 13440 |      1 | 2.402e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.06738071807118 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9226734000504264, dt = 0.0026820437151953724 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.61 us    (1.5%)
   patch tree reduce : 1.61 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 349.10 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8805059523809522
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,4.31238773442199e-20,1.8728939507691058e-18)
    sum a = (-4.1245592908782763e-17,4.808791478073232e-17,-6.247212364599323e-17)
    sum e = 1.196362857543049
    sum de = 5.421010862427522e-18
Info: cfl dt = 0.0026714684851302023 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.5841e+04 | 13440 |      1 | 2.407e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.116437710846675 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9253554437656218, dt = 0.0026714684851302023 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.53 us    (1.5%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 355.62 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (68.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8798363095238089
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-7.810213341230937e-19,1.6000755322928259e-18)
    sum a = (-2.315273059191895e-17,-4.038311536189837e-17,-2.856717296958212e-17)
    sum e = 1.1963628628109473
    sum de = 1.4474099002681484e-17
Info: cfl dt = 0.002664359132673927 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9311e+04 | 13440 |      1 | 2.266e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.44112519173169 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9280269122507521, dt = 0.002664359132673927 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.88 us    (1.5%)
   patch tree reduce : 1.54 us    (0.5%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 317.21 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (69.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.87641369047619
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-1.629124255226085e-19,1.5851019637705273e-18)
    sum a = (-3.0512538991999144e-17,-1.2228014998049908e-17,-1.0771386252200704e-17)
    sum e = 1.1963628727276083
    sum de = -2.1141942363467336e-17
Info: cfl dt = 0.0026527935255396505 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.5128e+04 | 13440 |      1 | 2.438e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.34319679126324 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.930691271383426, dt = 0.0026527935255396505 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.67 us    (1.5%)
   patch tree reduce : 1.54 us    (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 365.04 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (71.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.863392857142857
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-8.672690888115335e-19,1.556801919263383e-18)
    sum a = (3.216082941493377e-17,1.7192052434562332e-17,3.153792896440615e-17)
    sum e = 1.1963628846262488
    sum de = -8.72782748850831e-18
Info: cfl dt = 0.002646290398203003 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.0697e+04 | 13440 |      1 | 2.651e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.0234226900134 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.9333440649089656, dt = 0.002646290398203003 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (1.5%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 320.65 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (69.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8625744047619046
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-4.024895218793857e-19,1.7075857542829297e-18)
    sum a = (-1.092471559386904e-17,-2.298023508254207e-17,-1.2759876151961954e-17)
    sum e = 1.1963629095508999
    sum de = 3.480288973678469e-17
Info: cfl dt = 0.0026445962409340456 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.4714e+04 | 13440 |      1 | 2.456e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.78259588862482 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9359903553071686, dt = 0.0026445962409340456 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (0.8%)
   patch tree reduce : 1.94 us    (0.3%)
   gen split merge   : 811.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.1%)
   LB compute        : 666.77 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.862425595238095
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-3.78531812243708e-19,1.597080818588366e-18)
    sum a = (-1.5907919198090008e-17,2.972672611594892e-17,-1.669852361606737e-17)
    sum e = 1.1963629506617708
    sum de = -2.6020852139652106e-17
Info: cfl dt = 0.0026473587349010834 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1254e+04 | 13440 |      1 | 3.258e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.223517830996876 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9386349515481026, dt = 0.0013650484518978878 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.3%)
   patch tree reduce : 1.67 us    (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.38 us    (0.3%)
   LB compute        : 388.39 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.862202380952381
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,1.4374625781406633e-19,1.5860003778818652e-18)
    sum a = (-4.906538933386797e-17,6.560579206633988e-17,3.0263378811788097e-17)
    sum e = 1.1963622045699867
    sum de = -1.951563910473908e-18
Info: cfl dt = 0.0027040786173096144 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0684e+04 | 13440 |      1 | 2.215e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 22.188510209438085 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 412                                                     [SPH][rank=0]
Info: time since start : 445.499354109 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 2.00 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.99 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.96 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.96s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.9400000000000005, dt = 0.0027040786173096144 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.05 us    (2.5%)
   patch tree reduce : 1.30 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 882.00 ns  (0.2%)
   LB compute        : 346.88 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.97 us    (68.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.865029761904762
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-8.62477546884398e-20,1.6878206438334955e-18)
    sum a = (8.37561528863293e-18,4.164808243066215e-17,-3.0342439253585833e-18)
    sum e = 1.1963630590058265
    sum de = -3.0140820395097023e-17
Info: cfl dt = 0.002693868024892852 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9795e+04 | 13440 |      1 | 2.248e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.309600170479484 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9427040786173101, dt = 0.002693868024892852 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.51 us    (1.3%)
   patch tree reduce : 1.89 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.07 us    (0.2%)
   LB compute        : 417.82 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 us    (71.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8765625
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,-4.504049411507412e-19,1.649488308416411e-18)
    sum a = (1.4585453626200597e-17,2.3401890772129998e-17,-1.748673226308117e-17)
    sum e = 1.196363142606634
    sum de = -2.168404344971009e-18
Info: cfl dt = 0.0026969341399963637 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.3680e+04 | 13440 |      1 | 2.504e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.73367372639043 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9453979466422029, dt = 0.0026969341399963637 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.75 us    (1.1%)
   patch tree reduce : 1.43 us    (0.3%)
   gen split merge   : 1.04 us    (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.10 us    (0.3%)
   LB compute        : 401.47 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8811011904761903
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-5.510273216205876e-19,1.5800109504729457e-18)
    sum a = (3.388578450870257e-17,-2.5567667723195266e-17,2.664816042776433e-17)
    sum e = 1.1963632247721616
    sum de = -1.8323016715005025e-17
Info: cfl dt = 0.0027237860091620567 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9930e+04 | 13440 |      1 | 2.243e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.293122779287785 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9480948807821993, dt = 0.0027237860091620567 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.3%)
   patch tree reduce : 1.42 us    (0.4%)
   gen split merge   : 732.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 379.05 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (70.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8779761904761902
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,-5.845681151105364e-19,1.7114788820987272e-18)
    sum a = (8.394781456341473e-18,2.085279046689389e-17,-3.6439676355865814e-17)
    sum e = 1.1963633276441827
    sum de = 8.673617379884035e-19
Info: cfl dt = 0.0027023577248523048 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.4453e+04 | 13440 |      1 | 2.468e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.72803054666706 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9508186667913613, dt = 0.0027023577248523048 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.12 us    (1.2%)
   patch tree reduce : 1.98 us    (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.2%)
   LB compute        : 398.53 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (68.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8695684523809522
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-4.4082185729647e-19,1.5285018747562386e-18)
    sum a = (-1.2036353320964487e-17,1.5984583868924174e-17,-4.2426707993821677e-17)
    sum e = 1.1963633767534323
    sum de = 2.873135757086587e-17
Info: cfl dt = 0.0026839824458098393 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9859e+04 | 13440 |      1 | 2.245e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.328604671935736 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9535210245162136, dt = 0.0026839824458098393 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.78 us    (1.2%)
   patch tree reduce : 1.86 us    (0.5%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 378.46 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (69.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8676339285714283
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-2.4436863828391274e-19,1.4021249564280386e-18)
    sum a = (-3.014838180553684e-17,5.769016480271195e-18,3.1878128441232777e-17)
    sum e = 1.196363413466048
    sum de = -7.047314121155779e-18
Info: cfl dt = 0.002726341128091294 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5085e+04 | 13440 |      1 | 2.981e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.41294503248131 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9562050069620234, dt = 0.002726341128091294 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.76 us    (1.5%)
   patch tree reduce : 1.57 us    (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 370.31 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (67.2%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.866443452380952
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,7.187312890703316e-20,1.5749199371753643e-18)
    sum a = (3.6760709664983895e-17,2.5203510536732965e-17,-6.448936279731729e-17)
    sum e = 1.1963634993538377
    sum de = -7.48099499014998e-18
Info: cfl dt = 0.0026988464989783495 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.4793e+04 | 13440 |      1 | 2.453e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.013420043649504 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9589313480901147, dt = 0.0010686519098858094 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.27 us    (1.4%)
   patch tree reduce : 1.95 us    (0.5%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.2%)
   LB compute        : 359.81 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (68.9%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.865252976190476
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,-9.583083854271089e-21,1.3893974231840848e-18)
    sum a = (-5.4776907311013544e-17,-5.640603156623963e-17,-2.7580115332592192e-17)
    sum e = 1.1963623123558285
    sum de = -2.981555974335137e-17
Info: cfl dt = 0.0026888614622544425 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.6047e+04 | 13440 |      1 | 2.398e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.04314051209473 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 420                                                     [SPH][rank=0]
Info: time since start : 454.839072083 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 2.00 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 2.00 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.97 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 0.98s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.9600000000000005, dt = 0.0026888614622544425 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.91 us    (2.4%)
   patch tree reduce : 1.31 us    (0.4%)
   gen split merge   : 591.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 353.54 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (70.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8627232142857142
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,-3.4019947682662363e-19,1.3435783035058513e-18)
    sum a = (-5.609937288290296e-17,5.918512588397825e-17,2.2338168464305906e-17)
    sum e = 1.1963634797466476
    sum de = -4.0440741033709315e-17
Info: cfl dt = 0.0026639390249552815 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.4741e+04 | 13440 |      1 | 2.455e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.42639012430536 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.962688861462255, dt = 0.0026639390249552815 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.78 us    (1.7%)
   patch tree reduce : 1.47 us    (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 314.34 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (67.5%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8644345238095237
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,1.4374625781406634e-20,1.472350992797619e-18)
    sum a = (-1.69045599189342e-17,-9.027264990723365e-18,2.407749818385611e-17)
    sum e = 1.196363489176349
    sum de = 5.4643789493269423e-17
Info: cfl dt = 0.0026413878167017347 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0848e+04 | 13440 |      1 | 2.209e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.418046065784075 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9653528004872103, dt = 0.0026413878167017347 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.37 us    (1.4%)
   patch tree reduce : 1.39 us    (0.4%)
   gen split merge   : 1.00 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 351.89 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8746279761904763
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-1.724955093768796e-19,1.5518606416510244e-18)
    sum a = (2.0086143758552202e-17,3.334913181286339e-18,-8.854769481346486e-18)
    sum e = 1.1963634838258312
    sum de = 4.0115480381963664e-18
Info: cfl dt = 0.0026208979122514554 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0826e+04 | 13440 |      1 | 2.210e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.034964608790354 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.967994188303912, dt = 0.0026208979122514554 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (1.6%)
   patch tree reduce : 1.38 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 349.09 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (71.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8743303571428571
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,-2.922840575552682e-19,1.4458477765131505e-18)
    sum a = (5.3281946229747256e-18,3.415411085662216e-17,-4.168641476607924e-18)
    sum e = 1.1963634777965204
    sum de = 2.2768245622195593e-17
Info: cfl dt = 0.002602521046410193 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.0171e+04 | 13440 |      1 | 2.234e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.24130789703054 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9706150862161635, dt = 0.002602521046410193 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.39 us    (1.4%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.05 us    (0.3%)
   LB compute        : 353.75 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8633184523809527
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-9.343506757914312e-20,1.4765435919838626e-18)
    sum a = (1.4566287458492054e-17,5.949178456731491e-17,4.2448269932493784e-17)
    sum e = 1.1963634701929438
    sum de = 2.222614453595284e-17
Info: cfl dt = 0.002586307716598754 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7044e+04 | 13440 |      1 | 2.356e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.76580007935479 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9732176072625738, dt = 0.002586307716598754 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.99 us    (1.4%)
   patch tree reduce : 1.83 us    (0.5%)
   gen split merge   : 1.01 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.04 us    (0.3%)
   LB compute        : 348.98 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (70.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8650297619047616
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,2.20410928648235e-19,1.6351136826350045e-18)
    sum a = (2.9515898271154954e-18,2.1811098852320997e-17,3.6269576617452505e-17)
    sum e = 1.1963634598140462
    sum de = 2.5370330836160804e-17
Info: cfl dt = 0.0026645612895063128 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.8530e+04 | 13440 |      1 | 2.296e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.54746297547045 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9758039149791725, dt = 0.0026645612895063128 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.66 us    (1.5%)
   patch tree reduce : 1.80 us    (0.5%)
   gen split merge   : 1.02 us    (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 354.54 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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: 1.8678571428571429
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,2.395770963567772e-20,1.7294471643254855e-18)
    sum a = (2.5299341375275673e-17,6.382333846944545e-17,6.172464310536008e-17)
    sum e = 1.1963635381282587
    sum de = 1.1709383462843448e-17
Info: cfl dt = 0.002651834244124205 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3683e+04 | 13440 |      1 | 3.077e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.17757568330208 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9784684762686788, dt = 0.0015315237313217045 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.45 us    (1.3%)
   patch tree reduce : 1.50 us    (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.08 us    (0.3%)
   LB compute        : 393.75 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (68.1%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.867857142857143
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,3.2342908008164923e-19,1.842797078039286e-18)
    sum a = (1.705788926060254e-17,-3.819817224312456e-17,-1.2168120723960715e-17)
    sum e = 1.1963626316891576
    sum de = -2.873135757086587e-17
Info: cfl dt = 0.0026474668242792276 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3900e+04 | 13440 |      1 | 3.062e-01 | 0.0% |   0.2% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.00889279012125 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 428                                                     [SPH][rank=0]
Info: time since start : 464.23080742400003 (s)                                       [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 2.00 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 1.96 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.93 s                                      [sph::CartesianRender][rank=0]
Info: evolve_until (target_time = 1.00s, niter_max = -1, max_walltime = -1.00s)       [SPH][rank=0]
---------------- t = 0.9800000000000005, dt = 0.0026474668242792276 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.17 us    (2.3%)
   patch tree reduce : 1.32 us    (0.3%)
   gen split merge   : 612.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 871.00 ns  (0.2%)
   LB compute        : 368.36 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 us    (67.6%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8683035714285714
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-6.708158697989762e-20,1.7643355789824413e-18)
    sum a = (1.1557199128250933e-17,-5.5083565994350215e-17,-3.0881487720388584e-18)
    sum e = 1.1963634951585025
    sum de = 1.2034644114589099e-17
Info: cfl dt = 0.0026395000554499675 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.7714e+04 | 13440 |      1 | 2.329e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.9275207398343 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.9826474668242797, dt = 0.0026395000554499675 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.5%)
   patch tree reduce : 1.58 us    (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.03 us    (0.3%)
   LB compute        : 355.53 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (66.3%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.86875
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-3.8332335417084355e-20,1.757298001776961e-18)
    sum a = (-3.595573062122512e-17,-4.576880848799872e-17,-2.0071769132770796e-17)
    sum e = 1.1963634732559179
    sum de = 5.9631119486702744e-18
Info: cfl dt = 0.0026367272971855008 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep 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.0807e+04 | 13440 |      1 | 2.210e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.99088808105492 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9852869668797297, dt = 0.0026367272971855008 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.7%)
   patch tree reduce : 1.51 us    (0.4%)
   gen split merge   : 901.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 326.46 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8787946428571427
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,-7.187312890703317e-21,1.6896174720561713e-18)
    sum a = (3.0474206656582063e-18,-3.1355850371175e-17,-2.3996041971094807e-17)
    sum e = 1.1963634471097344
    sum de = 1.951563910473908e-18
Info: cfl dt = 0.002723007628674846 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.0498e+04 | 13440 |      1 | 2.222e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.72798626338444 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9879236941769152, dt = 0.002723007628674846 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.49 us    (1.3%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.18 us    (0.3%)
   LB compute        : 391.69 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (70.7%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8786458333333336
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,7.187312890703317e-21,1.6162469862969084e-18)
    sum a = (2.2769407237748107e-17,1.2381344339718247e-17,4.781958843281273e-17)
    sum e = 1.1963635026931307
    sum de = 9.64939933512099e-18
Info: cfl dt = 0.0027125048451086963 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9882e+04 | 13440 |      1 | 2.244e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.67652175048175 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.99064670180559, dt = 0.0027125048451086963 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.43 us    (1.4%)
   patch tree reduce : 1.38 us    (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.06 us    (0.3%)
   LB compute        : 377.05 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (71.0%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8674107142857141
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-3.6894872838943693e-19,1.827074831090872e-18)
    sum a = (-1.5198770992873948e-17,1.0809718587617788e-17,4.1590583927536525e-17)
    sum e = 1.1963634676827033
    sum de = 3.859759734048396e-17
Info: cfl dt = 0.0027435418678436376 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: Timestep perf report:                                                    [sph::Model][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 5.9861e+04 | 13440 |      1 | 2.245e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.49263061288568 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9933592066506987, dt = 0.0027435418678436376 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.74 us    (1.3%)
   patch tree reduce : 1.24 us    (0.3%)
   gen split merge   : 581.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 349.03 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 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: 1.862276785714286
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-1.796828222675829e-19,1.9423713087125713e-18)
    sum a = (-1.109721110324592e-17,-2.0737793460642636e-17,3.2323741840456384e-17)
    sum e = 1.1963634733433657
    sum de = 6.179952383167375e-18
Info: cfl dt = 0.002736105258684978 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.0354e+04 | 13440 |      1 | 2.227e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.35261894785997 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9961027485185423, dt = 0.002736105258684978 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.83 us    (1.6%)
   patch tree reduce : 1.43 us    (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1.09 us    (0.3%)
   LB compute        : 337.21 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (69.4%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8620535714285715
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-4.048852928429535e-19,2.010950252544699e-18)
    sum a = (-1.3684643743899115e-17,-2.1236113821064733e-17,-7.18635458231789e-17)
    sum e = 1.1963634491640416
    sum de = 1.951563910473908e-17
Info: cfl dt = 0.002732950173649365 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.0497e+04 | 13440 |      1 | 2.222e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.33731764445779 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9988388537772273, dt = 0.0011611462227731906 ----------------
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 13440.0 min = 13440.0 factor = 1
 - strategy "round robin" : max = 12768.0 min = 12768.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.56 us    (1.7%)
   patch tree reduce : 1.49 us    (0.4%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 973.00 ns  (0.3%)
   LB compute        : 313.34 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (68.8%)
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8619047619047622
Warning: the unit system is not set                                           [sph::Config][rank=0]
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,-3.25824851045217e-19,1.7842504251170983e-18)
    sum a = (-1.680872908039149e-17,1.0733053916783619e-17,4.6420458190089155e-17)
    sum e = 1.1963624686039582
    sum de = -1.7672495411513722e-17
Info: cfl dt = 0.002733653043557096 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: Timestep 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.0715e+04 | 13440 |      1 | 2.214e-01 | 0.0% |   0.3% 0.0% |     2.15 GB |     2.15 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.883701352594045 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 436                                                     [SPH][rank=0]
Info: time since start : 473.48812558900005 (s)                                       [SPH][rank=0]
Info: compute_slice field_name: rho, positions count: 1166400        [sph::CartesianRender][rank=0]
Info: compute_slice took 2.01 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, positions count: 1166400   [sph::CartesianRender][rank=0]
Info: compute_slice took 2.01 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, positions count: 1166400       [sph::CartesianRender][rank=0]
Info: compute_slice took 1.97 s                                      [sph::CartesianRender][rank=0]

Convert PNG sequence to Image sequence in mpl#

283 from shamrock.utils.plot import show_image_sequence
284
285 # If the animation is not returned only a static image will be shown in the doc

Rho plot

289 glob_str = os.path.join(dump_folder, f"{sim_name}_rho_*.png")
290 ani = show_image_sequence(glob_str, render_gif=render_gif)
291
292 if render_gif and shamrock.sys.world_rank() == 0:
293     # Show the animation
294     plt.show()

Vy plot

298 glob_str = os.path.join(dump_folder, f"{sim_name}_vy_*.png")
299 ani = show_image_sequence(glob_str, render_gif=render_gif)
300
301 if render_gif and shamrock.sys.world_rank() == 0:
302     # Show the animation
303     plt.show()

alpha plot

307 glob_str = os.path.join(dump_folder, f"{sim_name}_alpha_*.png")
308 ani = show_image_sequence(glob_str, render_gif=render_gif)
309
310 if render_gif and shamrock.sys.world_rank() == 0:
311     # Show the animation
312     plt.show()

Total running time of the script: (8 minutes 35.662 seconds)

Estimated memory usage: 1096 MB

Gallery generated by Sphinx-Gallery