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")

Setup parameters

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

Configure the solver

69 ctx = shamrock.Context()
70 ctx.pdata_layout_new()
71
72 model = shamrock.get_Model_SPH(context=ctx, vector_type="f64_3", sph_kernel=kernel)
73
74 cfg = model.gen_default_config()
75 cfg.set_artif_viscosity_VaryingCD10(
76     alpha_min=0.0, alpha_max=1, sigma_decay=0.1, alpha_u=1, beta_AV=2
77 )
78 cfg.set_boundary_periodic()
79 cfg.set_eos_adiabatic(gamma)
80 cfg.print_status()
81 model.set_solver_config(cfg)
82
83 # Set scheduler criteria to effectively disable patch splitting and merging.
84 crit_split = int(1e9)
85 crit_merge = 1
86 model.init_scheduler(crit_split, crit_merge)
----- SPH Solver configuration -----
units :
not set
part mass 0 ( can be changed using .set_part_mass() )
cfl force 0
cfl courant 0
--- artificial viscosity config
  Config Type : VaryingCD10 (Cullen & Dehnen 2010)
  alpha_min   = 0
  alpha_max   = 1
  sigma_decay = 0.1
  alpha_u     = 1
  beta_AV     = 2
--- artificial viscosity config (deduced)
-------------
EOS config f64_3 :
adiabatic :
gamma 1.4
--- Bondaries config
  Config Type : Periodic boundaries
--- Bondaries config config (deduced)
-------------
------------------------------------

Setup the simulation

 91 # Compute box size
 92 (xs, ys, zs) = model.get_box_dim_fcc_3d(1, resol, resol, thick)
 93 dr = 1 / xs
 94 (xs, ys, zs) = model.get_box_dim_fcc_3d(dr, resol, resol, thick)
 95
 96 model.resize_simulation_box((-xs / 2, -ys / 2, -zs / 2), (xs / 2, ys / 2, zs / 2))
 97
 98 # rho1 domain
 99 y_interface = ys / 4
100 model.add_cube_fcc_3d(dr, (-xs / 2, -ys / 2, -zs / 2), (xs / 2, -y_interface, zs / 2))
101 model.add_cube_fcc_3d(dr, (-xs / 2, y_interface, -zs / 2), (xs / 2, ys / 2, zs / 2))
102
103 # rho 2 domain
104 model.add_cube_fcc_3d(dr * fact, (-xs / 2, -y_interface, -zs / 2), (xs / 2, y_interface, zs / 2))
105
106 model.set_value_in_a_box(
107     "uint", "f64", u_1, (-xs / 2, -ys / 2, -zs / 2), (xs / 2, -y_interface, zs / 2)
108 )
109 model.set_value_in_a_box(
110     "uint", "f64", u_1, (-xs / 2, y_interface, -zs / 2), (xs / 2, ys / 2, zs / 2)
111 )
112
113 model.set_value_in_a_box(
114     "uint", "f64", u_2, (-xs / 2, -y_interface, -zs / 2), (xs / 2, y_interface, zs / 2)
115 )
116
117
118 # the velocity function to trigger KH
119 def vel_func(r):
120     x, y, z = r
121
122     ampl = 0.01
123     n = 2
124     pert = np.sin(2 * np.pi * n * x / (xs))
125
126     sigma = 0.05 / (2**0.5)
127     gauss1 = np.exp(-((y - y_interface) ** 2) / (2 * sigma * sigma))
128     gauss2 = np.exp(-((y + y_interface) ** 2) / (2 * sigma * sigma))
129     pert *= gauss1 + gauss2
130
131     # Alternative formula (See T. Tricco paper)
132     # interf_sz = ys/32
133     # vx = np.arctan(y/interf_sz)/np.pi
134
135     vx = 0
136     if np.abs(y) > y_interface:
137         vx = vslip / 2
138     else:
139         vx = -vslip / 2
140
141     return (vx, ampl * pert, 0)
142
143
144 model.set_field_value_lambda_f64_3("vxyz", vel_func)
145
146 vol_b = xs * ys * zs
147
148 totmass = (rho_1 * vol_b / 2) + (rho_2 * vol_b / 2)
149
150 pmass = model.total_mass_to_part_mass(totmass)
151 model.set_particle_mass(pmass)
152
153 print("Total mass :", totmass)
154 print("Current part mass :", pmass)
155
156 model.set_cfl_cour(C_cour)
157 model.set_cfl_force(C_force)
158
159 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.77 us   (67.6%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 1536 min = 1536                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 1536 min = 1536                       [LoadBalance][rank=0]
Info: Loadbalance 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.49 us    (0.6%)
   patch tree reduce : 2.11 us    (0.4%)
   gen split merge   : 611.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 2.92 us    (0.5%)
   LB compute        : 567.34 us  (97.2%)
   LB move op cnt    : 0
   LB apply          : 2.73 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     : 7.51 us    (63.1%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 3072 min = 3072                            [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 3072 min = 3072                       [LoadBalance][rank=0]
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     : 3.41 us    (0.6%)
   patch tree reduce : 872.00 ns  (0.2%)
   gen split merge   : 591.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.2%)
   LB compute        : 530.88 us  (97.5%)
   LB move op cnt    : 0
   LB apply          : 2.99 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     : 10.14 us   (64.5%)
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.70 us    (0.8%)
   patch tree reduce : 1002.00 ns (0.2%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.2%)
   LB compute        : 548.10 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 3.01 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 :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 23.17 us   (2.1%)
   patch tree reduce : 1924.00 ns (0.2%)
   gen split merge   : 641.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.1%)
   LB compute        : 1046.74 us (94.0%)
   LB move op cnt    : 0
   LB apply          : 13.59 us   (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.59 us    (77.8%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 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
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,7.232233596270212e-20,0)
    sum a = (4.944871268803882e-17,1.839952100020049e-17,2.639372955143343e-16)
    sum e = 1.1963511454089317
    sum de = -5.689893001203927e-16
Info: cfl dt = 1.6959368633748006e-05 cfl multiplier : 0.01                    [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    2.0084e+04    |       13440 |   6.692e-01   |    0 % |   1 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 0 (tsim/hr)                                             [sph::Model][rank=0]

<shamrock.model_sph.TimestepLog object at 0x7efeabdf0970>

Plotting functions

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

Running the simulation

260 t_sum = 0
261 t_target = 1
262
263 plot_state(0)
264
265 i_dump = 1
266 dt_dump = 0.02
267
268 while t_sum < t_target:
269     model.evolve_until(t_sum + dt_dump)
270
271     plot_state(i_dump)
272
273     t_sum += dt_dump
274     i_dump += 1
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1786.41 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1811.86 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1771.39 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0, dt = 1.6959368633748006e-05 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 15.16 us   (2.4%)
   patch tree reduce : 1232.00 ns (0.2%)
   gen split merge   : 490.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.2%)
   LB compute        : 595.03 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.34 us    (73.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8520833333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-1.4748964994464098e-19,4.5072780872200325e-21)
    sum a = (-3.350246115453172e-17,1.0610390443448949e-16,-6.504997320279215e-17)
    sum e = 1.1963511508247078
    sum de = -2.0469737016526324e-16
Info: cfl dt = 0.0005766286633394807 cfl multiplier : 0.34                     [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6161e+04    |       13440 |   2.031e-01   |    0 % |   1 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 0.3005471834186058 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 1.6959368633748006e-05, dt = 0.0005766286633394807 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.70 us    (1.7%)
   patch tree reduce : 1122.00 ns (0.3%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 368.71 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (71.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8520833333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,2.2160881413001892e-20,-3.4766754412712006e-20)
    sum a = (-5.205531149640055e-17,9.9970730767756e-17,5.492065356882761e-17)
    sum e = 1.1963573975888837
    sum de = 4.822531263215524e-16
Info: cfl dt = 0.0009504173631537268 cfl multiplier : 0.56                     [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.7730e+04    |       13440 |   1.984e-01   |    0 % |   1 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 10.46123673424045 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.0005935880319732287, dt = 0.0009504173631537268 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.48 us    (1.7%)
   patch tree reduce : 1172.00 ns (0.3%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 363.63 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.76 us    (74.7%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8520833333333337
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,1.0780969336054974e-19,5.2145452378904793e-20)
    sum a = (4.473383543173744e-17,-1.717288626685379e-17,-1.117387577408009e-17)
    sum e = 1.1963671337333193
    sum de = 3.2959746043559335e-16
Info: cfl dt = 0.0011834233920238948 cfl multiplier : 0.7066666666666667       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.0910e+04    |       13440 |   2.207e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 15.5062509286507 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.0015440053951269554, dt = 0.0011834233920238948 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.23 us    (1.8%)
   patch tree reduce : 1022.00 ns (0.3%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 378.70 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.74 us    (73.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8520833333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,-9.583083854271088e-20,-7.973425238123992e-21)
    sum a = (1.3761308414733283e-17,-7.298476663412862e-17,-3.269748211077296e-17)
    sum e = 1.196373346294371
    sum de = 6.83481049534862e-16
Info: cfl dt = 0.0013321235052401242 cfl multiplier : 0.8044444444444444       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6571e+04    |       13440 |   2.019e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 21.102279742490847 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.00272742878715085, dt = 0.0013321235052401242 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.91 us    (1.7%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.3%)
   LB compute        : 381.81 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.54 us    (75.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8811011904761907
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-3.4019947682662363e-19,-4.814002279918992e-20)
    sum a = (2.3900211132552095e-17,-2.1466107833567238e-17,4.6439624357797695e-17)
    sum e = 1.1963750600813956
    sum de = -2.42861286636753e-16
Info: cfl dt = 0.001451745726193952 cfl multiplier : 0.8696296296296296        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6554e+04    |       13440 |   2.019e-01   |    0 % |   1 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 23.74788029195165 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.004059552292390974, dt = 0.001451745726193952 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.39 us    (1.8%)
   patch tree reduce : 1092.00 ns (0.3%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 334.64 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (71.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8811011904761903
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,9.583083854271088e-20,6.019374545964028e-20)
    sum a = (-6.7464910334068465e-18,-7.973125766753546e-18,3.33778810644262e-17)
    sum e = 1.1963737856849517
    sum de = -2.498001805406602e-16
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.012118974700471501
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-2.395770963567772e-19,6.977682931391137e-20)
    sum a = (1.8112028484572358e-17,1.1285039546789633e-16,1.8552850341868828e-17)
    sum e = 1.1963492184928974
    sum de = 3.2439329000766293e-16
Info: cfl dt = 0.0007674045592355255 cfl multiplier : 0.4565432098765432       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    4.6135e+04    |       13440 |   2.913e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 17.94008372777105 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.0055112980185849265, dt = 0.0007674045592355255 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.43 us    (1.9%)
   patch tree reduce : 1212.00 ns (0.3%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 327.57 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (69.7%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8811011904761903
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,1.9645321901255733e-19,7.591599240805377e-20)
    sum a = (-6.324835343818918e-19,8.157120976755551e-17,2.795385560290876e-17)
    sum e = 1.196356210780035
    sum de = 1.0061396160665481e-16
Info: cfl dt = 0.0010660932319456464 cfl multiplier : 0.6376954732510288       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.7873e+04    |       13440 |   1.980e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 13.951544875538188 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.006278702577820452, dt = 0.0010660932319456464 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.78 us    (1.8%)
   patch tree reduce : 1262.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 358.35 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 2.98 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (72.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.881101190476191
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-6.899820375075184e-19,1.176922485852668e-19)
    sum a = (2.5414338381526927e-17,-4.937204801720465e-17,4.42834304905867e-17)
    sum e = 1.1963596526803164
    sum de = 9.020562075079397e-17
Info: cfl dt = 0.0012616150352869706 cfl multiplier : 0.7584636488340193       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6812e+04    |       13440 |   2.012e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 19.07892605859244 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.007344795809766098, dt = 0.0012616150352869706 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.77 us    (1.9%)
   patch tree reduce : 982.00 ns  (0.3%)
   gen split merge   : 1153.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 328.06 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (71.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.881101190476191
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-1.197885481783886e-19,1.7743678698923813e-19)
    sum a = (6.401500014653087e-18,-2.6679305450290712e-17,4.63054611838379e-17)
    sum e = 1.1963603867261239
    sum de = -9.194034422677078e-17
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.01022440907316986
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-7.187312890703316e-20,1.6156480435560163e-19)
    sum a = (-4.9257051010953396e-17,-7.973125766753546e-18,5.449899787923968e-17)
    sum e = 1.1963498436196307
    sum de = 3.469446951953614e-18
Info: cfl dt = 0.0006909728549565851 cfl multiplier : 0.4194878829446731       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    4.7011e+04    |       13440 |   2.859e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 15.886466283303388 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.00860641084505307, dt = 0.0006909728549565851 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.35 us    (1.7%)
   patch tree reduce : 1051.00 ns (0.3%)
   gen split merge   : 692.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1363.00 ns (0.4%)
   LB compute        : 353.60 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (73.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8811011904761907
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-1.5812088359547295e-19,2.2849665565027627e-19)
    sum a = (1.3128824880351392e-17,1.778620363352714e-17,6.2625452987661565e-18)
    sum e = 1.1963529770256194
    sum de = -2.949029909160572e-17
Info: cfl dt = 0.0010028304874655529 cfl multiplier : 0.6129919219631154       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5825e+04    |       13440 |   2.042e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 12.183083885765878 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.009297383700009654, dt = 0.0010028304874655529 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.08 us    (1.8%)
   patch tree reduce : 1373.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 323.43 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 2.98 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.93 us    (70.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8811011904761903
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-1.197885481783886e-19,1.8941564180707699e-19)
    sum a = (-3.173917372534585e-17,-4.13989222504511e-17,-1.566834210173323e-18)
    sum e = 1.1963549136684803
    sum de = 1.1709383462843448e-16
Info: cfl dt = 0.0012050701391501295 cfl multiplier : 0.7419946146420768       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6437e+04    |       13440 |   2.023e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 17.84599175290589 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.010300214187475207, dt = 0.0012050701391501295 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.55 us    (2.0%)
   patch tree reduce : 1232.00 ns (0.3%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 360.81 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (74.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8811011904761903
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,2.922840575552682e-19,1.9368310883593208e-19)
    sum a = (1.717288626685379e-17,3.572573660872262e-17,3.572573660872262e-17)
    sum e = 1.1963555237912649
    sum de = -4.85722573273506e-17
Info: cfl dt = 0.001334352407441995 cfl multiplier : 0.8279964097613846        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6114e+04    |       13440 |   2.033e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 21.340559223617134 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.011505284326625337, dt = 0.001334352407441995 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.64 us    (1.8%)
   patch tree reduce : 1052.00 ns (0.3%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1243.00 ns (0.3%)
   LB compute        : 351.25 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 us    (69.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8811011904761905
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-6.229004505276208e-20,2.1981198590734307e-19)
    sum a = (2.3296476849733017e-17,-3.357912582536589e-17,-1.7479544950190467e-17)
    sum e = 1.196355409263576
    sum de = 5.204170427930421e-18
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.011128264207043811
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,-2.9707559948240377e-19,2.3313846189218884e-19)
    sum a = (1.1681779218356457e-17,-2.085279046689389e-17,-5.0838259846908124e-18)
    sum e = 1.196350062049739
    sum de = -1.1275702593849246e-17
Info: cfl dt = 0.0007116148707606398 cfl multiplier : 0.4426654699204615       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    4.6860e+04    |       13440 |   2.868e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 16.748681185873433 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.012839636734067333, dt = 0.0007116148707606398 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.02 us    (1.8%)
   patch tree reduce : 1183.00 ns (0.3%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 371.64 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 us    (75.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8811011904761905
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,5.174865281306388e-19,2.7102159025360423e-19)
    sum a = (-3.4211609359747787e-18,5.136532945889304e-18,-8.952037782467337e-17)
    sum e = 1.1963515298236989
    sum de = -3.642919299551295e-17
Info: cfl dt = 0.0010138488734798472 cfl multiplier : 0.628443646613641        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5271e+04    |       13440 |   2.059e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 12.441349227513982 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.013551251604827973, dt = 0.0010138488734798472 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.02 us    (1.9%)
   patch tree reduce : 1052.00 ns (0.3%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 354.77 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (69.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8811011904761905
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,6.468581601632985e-19,8.31033052987571e-20)
    sum a = (5.666477483030495e-17,-5.884013486522448e-17,-5.4805656562576356e-17)
    sum e = 1.1963528909155183
    sum de = -4.163336342344337e-17
Info: cfl dt = 0.0012140161439088894 cfl multiplier : 0.7522957644090941       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5646e+04    |       13440 |   2.047e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 17.827246579021253 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.01456510047830782, dt = 0.0012140161439088894 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.23 us    (1.5%)
   patch tree reduce : 1183.00 ns (0.3%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 450.21 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8811011904761903
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.4374625781406633e-19,4.8963569067916345e-20)
    sum a = (5.3281946229747254e-17,-2.614265275445153e-17,-4.0325616858772744e-17)
    sum e = 1.1963542529966902
    sum de = 1.9992688060632702e-16
Info: cfl dt = 0.0013514695226909492 cfl multiplier : 0.834863842939396        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6173e+04    |       13440 |   2.031e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 21.518321930336796 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.015779116622216708, dt = 0.0013514695226909492 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.38 us    (1.6%)
   patch tree reduce : 1102.00 ns (0.3%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 368.51 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (72.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8811011904761903
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,-2.8749251562813265e-19,2.755136608102938e-20)
    sum a = (-1.4144631768904126e-17,2.3996041971094807e-17,1.1435014809108978e-16)
    sum e = 1.1963558552731723
    sum de = -1.0451708942760263e-16
Info: cfl dt = 0.0014501049557003503 cfl multiplier : 0.889909228626264        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5979e+04    |       13440 |   2.037e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 23.884343375352262 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.01713058614490766, dt = 0.0014501049557003503 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.40 us    (1.7%)
   patch tree reduce : 1172.00 ns (0.3%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 357.81 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (71.4%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8640624999999995
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-1.2458009010552416e-19,2.880914583690246e-19)
    sum a = (2.6755970121124878e-17,-3.8255670746250184e-17,1.0044269764757885e-17)
    sum e = 1.1963577746442515
    sum de = 4.466912950640278e-17
Info: cfl dt = 0.001538268626854653 cfl multiplier : 0.9266061524175093        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5576e+04    |       13440 |   2.050e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 25.4711690578554 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.018580691100608008, dt = 0.0014193088993919925 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.48 us    (2.1%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 340.22 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (69.7%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8632440476190475
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,4.887372765678255e-19,2.398765677272232e-19)
    sum a = (-3.6760709664983895e-17,2.1466107833567238e-17,2.5874026935161495e-17)
    sum e = 1.1963587059762277
    sum de = -6.678685382510707e-17
Info: cfl dt = 0.0016009811815894095 cfl multiplier : 0.9510707682783396       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.3140e+04    |       13440 |   2.129e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 24.004125072096993 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 20                                                      [SPH][rank=0]
Info: time since start : 565.7948984750001 (s)                                        [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1771.39 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1767.03 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1736.44 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.02, dt = 0.0016009811815894095 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.62 us    (1.6%)
   patch tree reduce : 1323.00 ns (0.2%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.2%)
   LB compute        : 562.99 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.41 us    (73.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8632440476190473
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,4.31238773442199e-19,2.8749251562813265e-19)
    sum a = (-1.4949610812662899e-18,2.1466107833567237e-18,-7.080221928631837e-17)
    sum e = 1.1963620169444162
    sum de = 1.8171228410857054e-16
Info: cfl dt = 0.0016578154489938933 cfl multiplier : 0.9673805121855598       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    5.5327e+04    |       13440 |   2.429e-01   |    0 % |   1 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 23.7260283086422 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.02160098118158941, dt = 0.0016578154489938933 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.34 us    (1.8%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1153.00 ns (0.3%)
   LB compute        : 384.62 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (70.8%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8632440476190475
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,5.462357796934521e-19,1.073604863048808e-19)
    sum a = (-6.826988937782723e-17,6.792489835907348e-17,-1.3272571138165458e-17)
    sum e = 1.1963641370985911
    sum de = -1.5178830414797062e-16
Info: cfl dt = 0.0017127056318353374 cfl multiplier : 0.9782536747903731       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5002e+04    |       13440 |   2.068e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 28.864753129424653 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.023258796630583303, dt = 0.0017127056318353374 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.55 us    (1.7%)
   patch tree reduce : 1423.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 368.68 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (71.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8811011904761903
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,5.749850312562653e-20,9.433348169048103e-20)
    sum a = (1.4834613806411644e-17,3.403911385037091e-17,4.384260863329023e-18)
    sum e = 1.196365933935546
    sum de = -9.540979117872439e-17
Info: cfl dt = 0.0017677005654260574 cfl multiplier : 0.9855024498602486       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4881e+04    |       13440 |   2.071e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 29.76478962560223 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.02497150226241864, dt = 0.0017677005654260574 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.27 us    (1.8%)
   patch tree reduce : 1612.00 ns (0.4%)
   gen split merge   : 1042.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1483.00 ns (0.4%)
   LB compute        : 375.69 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (70.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8811011904761907
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,1.0062238046984643e-19,1.5183198481610755e-19)
    sum a = (1.0311398227195691e-17,-4.2625556983797805e-17,-1.8687013515828623e-19)
    sum e = 1.196367391336117
    sum de = -9.107298248878237e-17
Info: cfl dt = 0.0018630452369620511 cfl multiplier : 0.990334966573499        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5362e+04    |       13440 |   2.056e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 30.948515865497466 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.026739202827844696, dt = 0.0018630452369620511 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.31 us    (1.9%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 367.39 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (72.7%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8811011904761903
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,-3.3061639297235256e-19,1.3715788766425495e-19)
    sum a = (-4.5308820462993706e-17,-3.1892503067014186e-17,4.218952666842847e-17)
    sum e = 1.1963693011654974
    sum de = -7.24247051220317e-17
Info: cfl dt = 0.0019187593324731917 cfl multiplier : 0.9935566443823326       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5416e+04    |       13440 |   2.055e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 32.64436605771284 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.028602248064806747, dt = 0.0019187593324731917 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.06 us    (1.8%)
   patch tree reduce : 1182.00 ns (0.3%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 365.86 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (72.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8714285714285714
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,-2.1082784479396395e-19,2.547752684069103e-19)
    sum a = (1.6789562912682946e-17,8.126455108421884e-18,-2.6832634791959047e-18)
    sum e = 1.1963702851256783
    sum de = -8.500145032286355e-17
Info: cfl dt = 0.00196284525791793 cfl multiplier : 0.9957044295882218         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5070e+04    |       13440 |   2.065e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 33.442960334196016 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.030521007397279937, dt = 0.00196284525791793 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.66 us    (2.0%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 369.83 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.20 us    (73.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8703869047619046
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,4.360303153693346e-19,2.147209726097616e-19)
    sum a = (3.327246714202922e-17,-2.315273059191895e-17,-5.447983171153114e-17)
    sum e = 1.1963708050166808
    sum de = 6.852157730108388e-17
Info: cfl dt = 0.0019844289087023056 cfl multiplier : 0.9971362863921479       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5351e+04    |       13440 |   2.057e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 34.35885576041179 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.03248385265519787, dt = 0.0019844289087023056 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.25 us    (1.6%)
   patch tree reduce : 19.77 us   (4.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1363.00 ns (0.3%)
   LB compute        : 409.06 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.26 us    (72.7%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8796875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-3.354079348994881e-20,3.953022089886824e-20)
    sum a = (3.0665868333667483e-18,4.0478946200441076e-17,-3.908939904157177e-17)
    sum e = 1.1963707211399641
    sum de = -2.8622937353617317e-16
Info: cfl dt = 0.001991296473513041 cfl multiplier : 0.9980908575947653        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4428e+04    |       13440 |   2.086e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 34.2462729230452 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.03446828156390017, dt = 0.001991296473513041 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.75 us    (1.8%)
   patch tree reduce : 1113.00 ns (0.3%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 345.36 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (65.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8799851190476191
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,2.6832634791959046e-19,-2.9048722933259235e-20)
    sum a = (1.920450004395926e-17,-6.823155704241015e-18,-3.863899410042103e-17)
    sum e = 1.1963702593498284
    sum de = 7.19910242530375e-17
Info: cfl dt = 0.002007812002181356 cfl multiplier : 0.9987272383965102        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5237e+04    |       13440 |   2.060e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 34.79634984856816 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.03645957803741321, dt = 0.002007812002181356 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.88 us    (2.0%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.3%)
   LB compute        : 364.72 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.90 us    (74.4%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8807291666666668
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-1.2697586106909193e-19,-9.298586052347416e-20)
    sum a = (-1.3799640750150368e-18,-2.7675946171134904e-17,1.7460378782481925e-17)
    sum e = 1.1963698244142582
    sum de = -8.673617379884035e-19
Info: cfl dt = 0.002023450062050571 cfl multiplier : 0.9991514922643402        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5042e+04    |       13440 |   2.066e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 34.97991782778995 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.03846739003959457, dt = 0.001532609960405433 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.96 us    (1.9%)
   patch tree reduce : 1323.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 355.61 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.8%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8639136904761906
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-3.378037058630559e-19,-2.8300044507144307e-20)
    sum a = (-2.828926353780825e-17,3.0397541985747896e-17,4.1695997849933506e-17)
    sum e = 1.1963622644903944
    sum de = 1.5872719805187785e-16
Info: cfl dt = 0.00203978222265689 cfl multiplier : 0.9994343281762269         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5199e+04    |       13440 |   2.061e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 26.76535086587973 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 31                                                      [SPH][rank=0]
Info: time since start : 574.5786964490001 (s)                                        [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1813.47 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1806.25 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1758.56 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.04, dt = 0.00203978222265689 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.41 us   (1.5%)
   patch tree reduce : 1312.00 ns (0.2%)
   gen split merge   : 490.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.2%)
   LB compute        : 733.22 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 5.10 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.04 us    (79.8%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8632440476190473
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,3.4019947682662363e-19,7.786255631595259e-20)
    sum a = (4.63054611838379e-17,1.93578293856276e-17,7.268769103464621e-18)
    sum e = 1.1963686352547114
    sum de = -6.158268339717665e-17
Warning: the corrector tolerance are broken the step will be re rerunned      [BasicGasSPH][rank=0]
    eps_v = 0.010097879950727756
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.4374625781406634e-20,5.749850312562653e-20)
    sum a = (-2.7254290481546976e-17,9.889742537607764e-18,-1.6607484319451796e-17)
    sum e = 1.1963529970104605
    sum de = 1.9949319973733282e-17
Info: cfl dt = 0.0010325024709288981 cfl multiplier : 0.499811442725409        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    4.4457e+04    |       13440 |   3.023e-01   |    0 % |   1 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 24.289861813655126 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.04203978222265689, dt = 0.0010325024709288981 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.77 us    (2.0%)
   patch tree reduce : 1362.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1133.00 ns (0.3%)
   LB compute        : 326.88 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 2.99 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (70.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.863244047619048
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,3.449910187537592e-19,2.2460352783447863e-21)
    sum a = (2.2232754541908927e-18,2.2999401250250614e-19,-1.404400938843428e-17)
    sum e = 1.196356914477591
    sum de = 8.673617379884035e-19
Info: cfl dt = 0.0013857563958165813 cfl multiplier : 0.6665409618169393       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6638e+04    |       13440 |   2.017e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 18.429537879050525 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.04307228469358579, dt = 0.0013857563958165813 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.64 us    (1.7%)
   patch tree reduce : 1342.00 ns (0.3%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.3%)
   LB compute        : 379.12 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (71.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8804315476190476
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-4.024895218793857e-19,-8.984141113379145e-21)
    sum a = (7.973125766753546e-18,1.0273065891778608e-17,-5.2869873624013596e-17)
    sum e = 1.1963595826117637
    sum de = -2.7755575615628914e-17
Info: cfl dt = 0.0016259299273677563 cfl multiplier : 0.7776939745446262       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6340e+04    |       13440 |   2.026e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 24.624219422533756 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.04445804108940237, dt = 0.0016259299273677563 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.59 us    (1.4%)
   patch tree reduce : 1513.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 440.12 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (73.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8811011904761905
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,5.126949862035032e-19,-1.0496471534131302e-19)
    sum a = (-3.434577253370758e-17,9.084763493848992e-17,3.1145022526381037e-18)
    sum e = 1.1963613907704862
    sum de = 5.0306980803327406e-17
Info: cfl dt = 0.0018004902760844013 cfl multiplier : 0.8517959830297507       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6109e+04    |       13440 |   2.033e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 28.79167490501979 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.04608397101677013, dt = 0.0018004902760844013 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.85 us    (1.9%)
   patch tree reduce : 1263.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.3%)
   LB compute        : 335.33 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.91 us    (74.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8811011904761903
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,5.558188635477232e-19,-4.477096988167274e-20)
    sum a = (3.909898212542604e-18,-1.5256269495999572e-17,-5.76422493834406e-18)
    sum e = 1.196362425288552
    sum de = 7.632783294297951e-17
Info: cfl dt = 0.0019066570317067988 cfl multiplier : 0.9011973220198337       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6441e+04    |       13440 |   2.023e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 32.04262186026149 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.04788446129285453, dt = 0.0019066570317067988 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.32 us    (1.8%)
   patch tree reduce : 1212.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 325.74 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (68.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8811011904761903
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-4.504049411507412e-19,-7.644006730633423e-20)
    sum a = (4.216556895879279e-19,-1.8016197646029646e-17,-2.3543241258980496e-17)
    sum e = 1.1963626417608992
    sum de = 2.862293735361732e-17
Info: cfl dt = 0.0019644969798707558 cfl multiplier : 0.9341315480132225       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6490e+04    |       13440 |   2.021e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 33.95703520945537 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.049791118324561325, dt = 0.0019644969798707558 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.73 us    (1.8%)
   patch tree reduce : 1183.00 ns (0.3%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 355.34 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 us    (73.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8811011904761903
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,6.660243278718407e-19,-1.3274068495017687e-19)
    sum a = (1.092471559386904e-17,6.033509594649078e-17,-1.79155752655598e-17)
    sum e = 1.196362514384763
    sum de = -8.239936510889834e-17
Info: cfl dt = 0.002003189919250454 cfl multiplier : 0.9560876986754817        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5526e+04    |       13440 |   2.051e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 34.47985366352943 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.05175561530443208, dt = 0.002003189919250454 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.05 us    (2.0%)
   patch tree reduce : 1202.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 329.40 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (70.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8811011904761907
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,4.360303153693346e-19,-1.7496614818305885e-19)
    sum a = (5.132699712347595e-17,-1.5332934166833741e-18,-4.34437127678562e-17)
    sum e = 1.196362613584829
    sum de = -1.5439038936193583e-16
Info: cfl dt = 0.0020297314737005613 cfl multiplier : 0.9707251324503211       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5918e+04    |       13440 |   2.039e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 35.36977286301904 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.05375880522368254, dt = 0.0020297314737005613 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.84 us    (2.0%)
   patch tree reduce : 1302.00 ns (0.3%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.3%)
   LB compute        : 378.39 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.60 us    (77.4%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.881101190476191
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,1.3416317395979523e-19,-2.7379170043022945e-19)
    sum a = (2.068029495751701e-17,8.27978445009022e-18,-1.3013827874100138e-17)
    sum e = 1.1963629705465162
    sum de = -2.42861286636753e-17
Info: cfl dt = 0.00209197366094061 cfl multiplier : 0.9804834216335475         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4888e+04    |       13440 |   2.071e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 35.27811162918903 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.055788536697383095, dt = 0.00209197366094061 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.83 us    (1.9%)
   patch tree reduce : 1233.00 ns (0.3%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 337.84 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.7%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.881101190476191
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,-3.976979799522502e-19,-2.8045493842265234e-19)
    sum a = (3.804484290145622e-17,-5.4470248627676867e-17,-2.7814900887021833e-17)
    sum e = 1.1963639952513296
    sum de = 3.469446951953614e-18
Info: cfl dt = 0.0021126638689438803 cfl multiplier : 0.9869889477556985       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5780e+04    |       13440 |   2.043e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 36.86006324741322 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.05788051035832371, dt = 0.0021126638689438803 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.66 us    (1.9%)
   patch tree reduce : 1122.00 ns (0.3%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 325.67 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (72.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.881101190476191
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,2.20410928648235e-19,-3.6116247275784166e-19)
    sum a = (1.680872908039149e-17,-6.1331736667334966e-18,6.305669176110376e-18)
    sum e = 1.1963648155967699
    sum de = 2.42861286636753e-17
Info: cfl dt = 0.0021197262929455187 cfl multiplier : 0.9913259651704657       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5510e+04    |       13440 |   2.052e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 37.07137001830735 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.05999317422726759, dt = 6.825772732407809e-06 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.66 us    (1.8%)
   patch tree reduce : 1572.00 ns (0.4%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 348.70 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (71.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.881101190476191
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-1.389547158869308e-19,-3.240280228225412e-19)
    sum a = (-4.366053004005908e-17,1.0311398227195691e-17,-5.873711671379107e-17)
    sum e = 1.1963538312524067
    sum de = -5.724587470723463e-17
Info: cfl dt = 0.0021273616976012254 cfl multiplier : 0.9942173101136437       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.8697e+04    |       13440 |   1.956e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 0.12560166436163925 (tsim/hr)                           [sph::Model][rank=0]
Info: iteration since start : 43                                                      [SPH][rank=0]
Info: time since start : 583.6769400420001 (s)                                        [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1844.46 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1826.73 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1771.19 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.06, dt = 0.0021273616976012254 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.29 us   (1.8%)
   patch tree reduce : 1212.00 ns (0.2%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.2%)
   LB compute        : 554.08 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (74.4%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.855059523809524
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,1.0062238046984643e-19,-4.536242583830354e-19)
    sum a = (-2.6909299462793217e-17,-1.9147001540833634e-17,-1.1576365295959475e-17)
    sum e = 1.1963651775169422
    sum de = -3.0791341698588326e-17
Info: cfl dt = 0.0021381165714732895 cfl multiplier : 0.9961448734090957       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.1323e+04    |       13440 |   2.192e-01   |    0 % |   1 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 34.94357366738616 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.062127361697601226, dt = 0.0021381165714732895 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.46 us    (2.0%)
   patch tree reduce : 1503.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 347.97 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (71.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8549107142857149
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-1.293716320326597e-19,-4.2307817859754627e-19)
    sum a = (3.706736834832057e-17,9.745996279793697e-18,1.1176271545043658e-17)
    sum e = 1.1963660988344396
    sum de = -8.239936510889834e-17
Info: cfl dt = 0.002142340237981177 cfl multiplier : 0.9974299156060639        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5461e+04    |       13440 |   2.053e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 37.489945448030504 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.06426547826907451, dt = 0.002142340237981177 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.90 us    (1.9%)
   patch tree reduce : 1242.00 ns (0.3%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1373.00 ns (0.4%)
   LB compute        : 351.98 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (70.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8808035714285718
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-5.366526958391809e-19,-3.903609313763239e-19)
    sum a = (-4.1245592908782763e-17,9.6789146928138e-18,2.1878180439300897e-17)
    sum e = 1.1963664137399657
    sum de = 7.45931094670027e-17
Info: cfl dt = 0.0021833481476595602 cfl multiplier : 0.9982866104040425       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5358e+04    |       13440 |   2.056e-01   |    0 % |   1 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 37.505288998669954 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.0664078185070557, dt = 0.0021833481476595602 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.40 us    (1.8%)
   patch tree reduce : 1303.00 ns (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.3%)
   LB compute        : 346.15 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (71.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8799107142857145
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,5.749850312562653e-20,-3.0396344100266107e-19)
    sum a = (-4.11689282379486e-17,-1.4642952129326224e-17,3.089346657520642e-17)
    sum e = 1.1963669371966221
    sum de = -1.5829351718288365e-17
Info: cfl dt = 0.0021807942296033964 cfl multiplier : 0.9988577402693618       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5631e+04    |       13440 |   2.048e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 38.38281677399369 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.06859116665471526, dt = 0.0021807942296033964 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.62 us    (1.8%)
   patch tree reduce : 1132.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 357.16 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (69.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8802083333333335
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-6.324835343818918e-19,-2.2655009174237746e-19)
    sum a = (-8.433113791758558e-18,4.06706078775265e-17,-8.109924288773266e-17)
    sum e = 1.196366516624192
    sum de = -1.5395670849294163e-17
Info: cfl dt = 0.0021706605824949434 cfl multiplier : 0.9992384935129079       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5407e+04    |       13440 |   2.055e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 38.20719862600843 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.07077196088431865, dt = 0.0021706605824949434 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.8%)
   patch tree reduce : 1162.00 ns (0.3%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 348.18 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (73.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8805803571428574
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-2.252024705753706e-19,-5.285669688371398e-19)
    sum a = (2.828926353780825e-17,6.34783474506917e-17,5.922705187584068e-17)
    sum e = 1.1963657989461756
    sum de = 2.168404344971009e-17
Info: cfl dt = 0.002173892458537435 cfl multiplier : 0.9994923290086053        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4888e+04    |       13440 |   2.071e-01   |    0 % |   1 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 37.72752684569069 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.0729426214668136, dt = 0.002173892458537435 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.33 us    (1.8%)
   patch tree reduce : 1142.00 ns (0.3%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 340.04 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (71.8%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8804315476190478
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.8687013515828623e-19,-2.223574925561339e-19)
    sum a = (-8.210786246339469e-17,-1.8342022497074863e-17,1.290961183718494e-17)
    sum e = 1.1963652086316947
    sum de = 7.090682208055199e-17
Info: cfl dt = 0.0021794331189129434 cfl multiplier : 0.9996615526724035       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.3935e+04    |       13440 |   2.102e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 37.2290779168631 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.07511651392535104, dt = 0.0021794331189129434 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.29 us    (1.9%)
   patch tree reduce : 1403.00 ns (0.4%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 369.30 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.64 us    (71.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8804315476190478
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,2.5395172213818386e-19,-2.442189025986898e-19)
    sum a = (4.297054800255156e-17,1.797786531061256e-17,7.664834964447941e-17)
    sum e = 1.1963647050870467
    sum de = 8.673617379884035e-19
Info: cfl dt = 0.0021603612805719693 cfl multiplier : 0.9997743684482691       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4510e+04    |       13440 |   2.083e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 37.659217712546855 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.07729594704426399, dt = 0.0021603612805719693 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.84 us    (1.9%)
   patch tree reduce : 1182.00 ns (0.3%)
   gen split merge   : 701.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 336.69 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (69.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8805803571428574
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-3.6415718646230135e-19,-2.0813260245995022e-20)
    sum a = (-1.1518866792833848e-17,4.772375759427002e-18,-3.386901411195759e-17)
    sum e = 1.196364100967049
    sum de = -1.7780915628762273e-17
Info: cfl dt = 0.0021712000242031996 cfl multiplier : 0.9998495789655127       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4587e+04    |       13440 |   2.081e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 37.37446703585091 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.07945630832483595, dt = 0.0005436916751640486 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.43 us    (1.7%)
   patch tree reduce : 1423.00 ns (0.4%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 350.58 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8805803571428574
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-2.922840575552682e-19,-1.6485898943050732e-19)
    sum a = (-2.0891122802310974e-17,-3.5879065950390954e-17,6.395031433051454e-17)
    sum e = 1.1963552796479424
    sum de = -5.117434254131581e-17
Info: cfl dt = 0.002175975333812554 cfl multiplier : 0.9998997193103417        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6823e+04    |       13440 |   2.011e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 9.73151066619908 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 53                                                      [SPH][rank=0]
Info: time since start : 592.612888237 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1812.40 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1808.34 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1749.23 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.08, dt = 0.002175975333812554 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.11 us   (1.4%)
   patch tree reduce : 1693.00 ns (0.2%)
   gen split merge   : 530.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.2%)
   LB compute        : 693.62 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 4.65 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.18 us    (75.7%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8652529761904766
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,5.89359657037672e-19,-6.288898779365402e-21)
    sum a = (2.913257491698411e-17,4.446550908381785e-18,5.916116817434257e-17)
    sum e = 1.196363799944762
    sum de = 2.47198095326695e-17
Info: cfl dt = 0.002184955513788526 cfl multiplier : 0.9999331462068944        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.0344e+04    |       13440 |   2.227e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 35.17131899493115 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.08217597533381256, dt = 0.002184955513788526 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.08 us    (1.9%)
   patch tree reduce : 1363.00 ns (0.4%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 361.31 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (74.4%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8644345238095241
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,8.576860049572625e-19,1.2345707246635175e-19)
    sum a = (-5.761350013187778e-17,-1.0124528092037405e-17,1.441295811682372e-17)
    sum e = 1.1963636943170142
    sum de = 4.0766001685454967e-17
Info: cfl dt = 0.0022023072660140603 cfl multiplier : 0.9999554308045964       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4818e+04    |       13440 |   2.074e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 37.93483387049252 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.08436093084760109, dt = 0.0022023072660140603 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.27 us    (1.8%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 371.83 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (71.8%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8796130952380958
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,3.8332335417084355e-20,1.1559594899214502e-19)
    sum a = (-4.4848832437988697e-17,-1.334444426707249e-17,-3.044545740501925e-17)
    sum e = 1.1963636843311105
    sum de = 3.0791341698588326e-17
Info: cfl dt = 0.0022230188414489784 cfl multiplier : 0.9999702872030642       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4794e+04    |       13440 |   2.074e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 38.222076943472196 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.08656323811361515, dt = 0.0022230188414489784 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.70 us    (1.7%)
   patch tree reduce : 1352.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 384.20 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (70.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8804315476190478
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-1.5812088359547295e-19,-1.5123304207521563e-20)
    sum a = (2.3976875803386265e-17,7.556261619092753e-18,-1.2247181165758451e-17)
    sum e = 1.1963637411757615
    sum de = 3.426078865054194e-17
Info: cfl dt = 0.002237227422273784 cfl multiplier : 0.9999801914687095        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5226e+04    |       13440 |   2.061e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 38.83881445856775 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.08878625695506412, dt = 0.002237227422273784 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.73 us    (1.9%)
   patch tree reduce : 1322.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 341.53 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (72.8%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.881101190476191
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.7728705130401514e-19,-1.7593943013700826e-20)
    sum a = (-2.5462253800798282e-17,-5.864847318813906e-18,6.533746571842028e-17)
    sum e = 1.1963637127811364
    sum de = -1.3444106938820255e-17
Info: cfl dt = 0.0022585965572124197 cfl multiplier : 0.9999867943124731       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5046e+04    |       13440 |   2.066e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 38.97937293807629 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.0910234843773379, dt = 0.0022585965572124197 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.85 us    (1.9%)
   patch tree reduce : 1152.00 ns (0.3%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 337.11 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (70.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.871949404761905
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-2.395770963567772e-19,2.2228262471352237e-19)
    sum a = (-1.2103434907944385e-17,1.583125452725584e-17,2.4935184188813372e-17)
    sum e = 1.1963636492528038
    sum de = 7.806255641895632e-18
Info: cfl dt = 0.002281046657683647 cfl multiplier : 0.9999911962083153        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5217e+04    |       13440 |   2.061e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 39.45527766392501 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.09328208093455032, dt = 0.002281046657683647 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.67 us    (1.8%)
   patch tree reduce : 1253.00 ns (0.3%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1373.00 ns (0.4%)
   LB compute        : 344.92 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 2.92 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (69.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.871949404761905
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,5.510273216205876e-19,2.296571072107544e-19)
    sum a = (8.001875018316358e-18,-3.718236535457182e-18,2.965964452896902e-17)
    sum e = 1.1963634522445172
    sum de = 3.9898639947466563e-17
Info: cfl dt = 0.0022334184074738134 cfl multiplier : 0.9999941308055437       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4767e+04    |       13440 |   2.075e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 39.57242782317291 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.09556312759223397, dt = 0.0022334184074738134 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.64 us    (1.9%)
   patch tree reduce : 1433.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 337.00 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (70.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8800595238095246
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,4.2644723151506344e-19,3.0201687709476227e-19)
    sum a = (7.283143729246027e-19,-6.94773579434654e-17,5.058909966669708e-17)
    sum e = 1.1963626180420228
    sum de = -2.3852447794681098e-17
Info: cfl dt = 0.00225216374229395 cfl multiplier : 0.9999960872036958         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4706e+04    |       13440 |   2.077e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 38.70954042132741 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.09779654599970779, dt = 0.002203454000292218 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.71 us    (1.9%)
   patch tree reduce : 1293.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 338.84 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (71.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8805803571428577
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,1.0110153466255999e-18,4.444903815844332e-19)
    sum a = (3.409661235349653e-17,-2.828926353780825e-17,1.1154709606371547e-17)
    sum e = 1.196361993351638
    sum de = -9.020562075079397e-17
Info: cfl dt = 0.002272035341470663 cfl multiplier : 0.9999973914691305        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5203e+04    |       13440 |   2.061e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 38.48324585012304 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 62                                                      [SPH][rank=0]
Info: time since start : 601.0689810050001 (s)                                        [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1831.94 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1834.03 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1767.99 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.1, dt = 0.002272035341470663 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.31 us   (1.4%)
   patch tree reduce : 1373.00 ns (0.2%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1313.00 ns (0.2%)
   LB compute        : 703.54 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 5.14 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (77.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.86421130952381
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,5.126949862035032e-19,4.2090701116181295e-19)
    sum a = (-3.3559959657657353e-17,5.519856300060147e-17,-4.988953454533529e-17)
    sum e = 1.1963621132603008
    sum de = -3.859759734048396e-17
Info: cfl dt = 0.002262780169241508 cfl multiplier : 0.9999982609794204        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.3515e+04    |       13440 |   2.116e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 38.65372495871726 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.10227203534147067, dt = 0.002262780169241508 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.62 us    (1.8%)
   patch tree reduce : 1342.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 345.58 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (72.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.86421130952381
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,3.018671414095393e-19,2.450424488674162e-19)
    sum a = (5.8840134865224486e-18,2.798260485447158e-17,-4.182057794003903e-17)
    sum e = 1.1963619874807638
    sum de = 3.0357660829594124e-17
Info: cfl dt = 0.0022477613208550366 cfl multiplier : 0.999998840652947        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4279e+04    |       13440 |   2.091e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 38.95973676287872 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.10453481551071217, dt = 0.0022477613208550366 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.35 us    (2.2%)
   patch tree reduce : 1422.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 364.71 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.22 us    (71.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8645833333333337
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,3.354079348994881e-20,1.4883727111164783e-19)
    sum a = (6.338251661214898e-17,-2.89025809044816e-17,3.472430434595129e-17)
    sum e = 1.1963620911647739
    sum de = 1.713039432527097e-17
Info: cfl dt = 0.0022387444116306063 cfl multiplier : 0.9999992271019646       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4974e+04    |       13440 |   2.069e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 39.11940678706823 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.10678257683156721, dt = 0.0022387444116306063 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.46 us    (2.1%)
   patch tree reduce : 1372.00 ns (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 333.15 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (68.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8809523809523814
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,1.724955093768796e-19,3.1534335307960803e-19)
    sum a = (1.2917997035557428e-17,3.9942293504601897e-17,4.3904898678342995e-17)
    sum e = 1.1963624659851526
    sum de = 1.214306433183765e-17
Info: cfl dt = 0.002235339392373772 cfl multiplier : 0.9999994847346431        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4732e+04    |       13440 |   2.076e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 38.81764590418982 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.10902132124319781, dt = 0.002235339392373772 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.81 us    (1.9%)
   patch tree reduce : 1292.00 ns (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1503.00 ns (0.4%)
   LB compute        : 342.62 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (69.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8808035714285718
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,2.0843207383039619e-19,4.31388509127422e-19)
    sum a = (1.514127248974832e-18,2.0546131783557215e-17,-6.8519049558038286e-18)
    sum e = 1.196363016454243
    sum de = 1.5178830414797062e-18
Info: cfl dt = 0.0022370742306706266 cfl multiplier : 0.999999656489762        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4995e+04    |       13440 |   2.068e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 38.915898303802415 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.11125666063557159, dt = 0.0022370742306706266 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.8%)
   patch tree reduce : 1292.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 363.05 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (70.7%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8806547619047622
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,0,3.448412830685362e-19)
    sum a = (1.320548955118556e-17,6.470498218403839e-17,-6.645868652937e-18)
    sum e = 1.1963636387177996
    sum de = -9.324138683375338e-18
Info: cfl dt = 0.002310979609685756 cfl multiplier : 0.9999997709931746        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4547e+04    |       13440 |   2.082e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 38.67780466343627 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.11349373486624222, dt = 0.002310979609685756 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.54 us    (1.8%)
   patch tree reduce : 1242.00 ns (0.3%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1393.00 ns (0.4%)
   LB compute        : 348.82 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (70.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8805059523809526
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.0757011626419296e-18,3.3690529175171796e-19)
    sum a = (-2.208900828409486e-17,5.0905341433888024e-17,5.032796063166819e-17)
    sum e = 1.196364689536236
    sum de = -8.673617379884035e-19
Info: cfl dt = 0.0023188786563303936 cfl multiplier : 0.999999847328783        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4557e+04    |       13440 |   2.082e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 39.9616472918361 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.11580471447592797, dt = 0.0023188786563303936 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.13 us    (2.0%)
   patch tree reduce : 1333.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1393.00 ns (0.4%)
   LB compute        : 342.65 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (69.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.880654761904762
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,6.372750763090274e-19,5.206309775203214e-19)
    sum a = (-1.671289824184878e-17,-1.0273065891778608e-17,-2.599171918374676e-17)
    sum e = 1.1963650753466852
    sum de = -4.466912950640278e-17
Info: cfl dt = 0.002276407096007442 cfl multiplier : 0.9999998982191887        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4865e+04    |       13440 |   2.072e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 40.289678675988334 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.11812359313225836, dt = 0.0018764068677416534 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.6%)
   patch tree reduce : 1232.00 ns (0.3%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.3%)
   LB compute        : 373.70 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 2.98 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (71.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.880505952380952
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,3.018671414095393e-19,4.1252181278932577e-19)
    sum a = (5.46235779693452e-18,2.5912658741949025e-17,-2.7287831275036924e-18)
    sum e = 1.1963620813292217
    sum de = -1.452830911130576e-17
Info: cfl dt = 0.0022812681403103796 cfl multiplier : 0.9999999321461258       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5116e+04    |       13440 |   2.064e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 32.728126025566105 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 71                                                      [SPH][rank=0]
Info: time since start : 609.564750923 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1833.71 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1832.26 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1765.53 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.12000000000000001, dt = 0.0022812681403103796 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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    (1.6%)
   patch tree reduce : 1092.00 ns (0.2%)
   gen split merge   : 471.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.2%)
   LB compute        : 578.89 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.29 us    (69.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8736607142857145
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,2.8988828659170044e-19,4.153667908085625e-19)
    sum a = (1.9338663217919058e-17,-6.593161691738509e-18,2.2586729701776063e-17)
    sum e = 1.196364407937157
    sum de = 8.456776945386935e-18
Info: cfl dt = 0.002317079434052914 cfl multiplier : 0.999999954764084         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.1324e+04    |       13440 |   2.192e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 37.47212600235311 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.12228126814031039, dt = 0.002317079434052914 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.60 us    (1.7%)
   patch tree reduce : 1312.00 ns (0.3%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1223.00 ns (0.3%)
   LB compute        : 359.08 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.855133928571429
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.3404338541161685e-18,4.996679815891035e-19)
    sum a = (-9.008098823014824e-19,-3.0665868333667484e-19,-3.2735814446190036e-17)
    sum e = 1.1963641152987434
    sum de = -1.5395670849294163e-17
Info: cfl dt = 0.0023210631200026605 cfl multiplier : 0.9999999698427228       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5405e+04    |       13440 |   2.055e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 40.59345646780618 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.1245983475743633, dt = 0.0023210631200026605 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.46 us    (1.8%)
   patch tree reduce : 1202.00 ns (0.3%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 392.87 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (70.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8541666666666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.2446030155734576e-18,3.4768626108777293e-19)
    sum a = (-3.1528345880551885e-17,-2.2692742566913938e-17,-5.724215563252478e-17)
    sum e = 1.1963633827414426
    sum de = -3.642919299551295e-17
Info: cfl dt = 0.0023111832880820947 cfl multiplier : 0.9999999798951485       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5705e+04    |       13440 |   2.046e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 40.8496493658253 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.12691941069436596, dt = 0.0023111832880820947 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.52 us    (1.7%)
   patch tree reduce : 1212.00 ns (0.3%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 355.08 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (71.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8781249999999998
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,5.630061764384264e-19,1.8432462850949548e-19)
    sum a = (9.985573376150474e-18,-4.50788264504912e-17,1.7563396933915338e-17)
    sum e = 1.1963625276752836
    sum de = 1.0842021724855044e-17
Info: cfl dt = 0.0022888957729430373 cfl multiplier : 0.9999999865967656       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5795e+04    |       13440 |   2.043e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 40.731568990350375 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.12923059398244807, dt = 0.0022888957729430373 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.08 us    (1.8%)
   patch tree reduce : 1102.00 ns (0.3%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1053.00 ns (0.3%)
   LB compute        : 328.42 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (67.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8777529761904757
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,3.9395458782167554e-19,3.029152912061002e-19)
    sum a = (-2.430270065443148e-17,-2.2692742566913938e-17,-2.4127809374091032e-17)
    sum e = 1.1963617330250658
    sum de = 1.6046192152785466e-17
Info: cfl dt = 0.0022695190253598932 cfl multiplier : 0.9999999910645103       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5812e+04    |       13440 |   2.042e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 40.34908721945053 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.1315194897553911, dt = 0.0022695190253598932 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.90 us    (1.9%)
   patch tree reduce : 1112.00 ns (0.3%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 337.15 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (70.7%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8781994047619046
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,4.971224749403128e-19,1.8881669906618504e-19)
    sum a = (3.3329965645154845e-17,-5.519856300060147e-17,2.7311788984672603e-17)
    sum e = 1.1963611578317974
    sum de = 4.336808689942018e-19
Info: cfl dt = 0.0023370574029185696 cfl multiplier : 0.9999999940430069       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5674e+04    |       13440 |   2.046e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 39.923896760604336 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.133789008780751, dt = 0.0023370574029185696 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.90 us    (1.9%)
   patch tree reduce : 1142.00 ns (0.3%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1103.00 ns (0.3%)
   LB compute        : 336.88 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (70.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8793898809523806
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.3655894492336302e-19,3.2312960871120326e-19)
    sum a = (-7.620468280916369e-17,-2.5759329400280686e-17,5.832504410805742e-17)
    sum e = 1.1963611909520024
    sum de = 2.3635607360183997e-17
Info: cfl dt = 0.0023156011848369427 cfl multiplier : 0.9999999960286713       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6302e+04    |       13440 |   2.027e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.50460906808271 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.13612606618366957, dt = 0.0023156011848369427 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.54 us    (1.8%)
   patch tree reduce : 992.00 ns  (0.3%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1263.00 ns (0.4%)
   LB compute        : 337.19 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (67.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.880059523809524
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,-3.2941850749056866e-19,4.99593113746492e-19)
    sum a = (-3.009088330241122e-17,2.2999401250250612e-18,3.080961459148155e-18)
    sum e = 1.196361139906967
    sum de = 5.833007687972014e-17
Info: cfl dt = 0.0022980013553271514 cfl multiplier : 0.9999999973524476       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5613e+04    |       13440 |   2.048e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 40.69669347840328 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.13844166736850652, dt = 0.001558332631493492 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.31 us    (1.6%)
   patch tree reduce : 1212.00 ns (0.3%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 364.60 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (70.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.880059523809524
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,3.2462696556343313e-19,4.494316591967917e-19)
    sum a = (-2.4609359337768156e-17,-1.6866227583517116e-17,6.373948648572058e-17)
    sum e = 1.19635877703179
    sum de = 3.0140820395097023e-17
Info: cfl dt = 0.002288637493517105 cfl multiplier : 0.9999999982349651        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6093e+04    |       13440 |   2.034e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 27.587717502887582 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 80                                                      [SPH][rank=0]
Info: time since start : 618.236916049 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1852.17 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1824.13 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1757.08 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.14, dt = 0.002288637493517105 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.52 us   (1.5%)
   patch tree reduce : 1362.00 ns (0.2%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.2%)
   LB compute        : 653.64 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.33 us    (71.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8683035714285716
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,-3.7134449935300467e-19,6.327830057523378e-19)
    sum a = (1.0138902717818811e-17,-1.7632874291858803e-17,1.1014557005002832e-17)
    sum e = 1.1963614781244118
    sum de = 2.3852447794681098e-17
Info: cfl dt = 0.002276489143385358 cfl multiplier : 0.9999999988233101        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4425e+04    |       13440 |   2.086e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 39.49408945413876 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.1422886374935171, dt = 0.002276489143385358 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.69 us    (1.7%)
   patch tree reduce : 1233.00 ns (0.3%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 343.10 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 22.62 us   (5.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (72.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8633184523809527
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-2.395770963567772e-19,5.916056923160167e-19)
    sum a = (-2.0239473100220538e-17,-5.167198814222971e-17,4.229494059082545e-17)
    sum e = 1.1963620799665682
    sum de = 2.8189256484623115e-18
Info: cfl dt = 0.0023719443218345156 cfl multiplier : 0.9999999992155401       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5434e+04    |       13440 |   2.054e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 39.9000481169362 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.14456512663690246, dt = 0.0023719443218345156 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.65 us    (1.9%)
   patch tree reduce : 1353.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1423.00 ns (0.4%)
   LB compute        : 336.19 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.51 us    (71.4%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8633928571428573
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-3.809275832072758e-19,7.372985140379819e-19)
    sum a = (9.410588344894209e-18,-1.0733053916783619e-18,1.1631468028121535e-18)
    sum e = 1.1963631779773212
    sum de = -1.0842021724855044e-17
Info: cfl dt = 0.002355808051284087 cfl multiplier : 0.9999999994770267        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5851e+04    |       13440 |   2.041e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.837913616312385 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.14693707095873698, dt = 0.002355808051284087 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.59 us    (1.8%)
   patch tree reduce : 1262.00 ns (0.3%)
   gen split merge   : 932.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1442.00 ns (0.4%)
   LB compute        : 342.43 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (72.8%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8635416666666669
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,9.583083854271089e-21,7.012870817418538e-19)
    sum a = (-1.5620426682461874e-18,1.0579724575115282e-17,-4.697867282460044e-17)
    sum e = 1.196363772521104
    sum de = 4.2934406030425976e-17
Info: cfl dt = 0.0023386387538462104 cfl multiplier : 0.9999999996513512       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5867e+04    |       13440 |   2.040e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.56356438673806 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.14929287901002106, dt = 0.0023386387538462104 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.15 us    (2.0%)
   patch tree reduce : 1242.00 ns (0.4%)
   gen split merge   : 922.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 330.55 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (70.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.880059523809524
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.5332934166833742e-19,5.336579821347213e-19)
    sum a = (-6.133173666733497e-17,-5.61185390506115e-17,1.0565349949333876e-17)
    sum e = 1.1963642176693796
    sum de = -2.5370330836160804e-17
Info: cfl dt = 0.0023486702581575632 cfl multiplier : 0.9999999997675676       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4462e+04    |       13440 |   2.085e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 40.38054549345564 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.15163151776386727, dt = 0.0023486702581575632 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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 : 1513.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1472.00 ns (0.4%)
   LB compute        : 358.29 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (68.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8718005952380958
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,-3.1145022526381037e-19,6.284406708808712e-19)
    sum a = (3.028254497949664e-18,-3.434577253370758e-17,-3.972188257595366e-17)
    sum e = 1.196364638353329
    sum de = -2.6454533008646308e-17
Info: cfl dt = 0.002353147657089335 cfl multiplier : 0.9999999998450452        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6291e+04    |       13440 |   2.027e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.70411172983233 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.15398018802202484, dt = 0.002353147657089335 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.15 us    (1.8%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 369.02 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (71.8%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8715773809523812
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-1.8687013515828623e-19,4.725658225637431e-19)
    sum a = (4.671753378957156e-17,4.661211986717457e-17,7.668862854380439e-18)
    sum e = 1.1963648697905722
    sum de = -1.5937771935536915e-17
Info: cfl dt = 0.0023780291052742483 cfl multiplier : 0.9999999998966969       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5945e+04    |       13440 |   2.038e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.56591207292393 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.15633333567911417, dt = 0.0023780291052742483 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.94 us    (1.8%)
   patch tree reduce : 1452.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1333.00 ns (0.3%)
   LB compute        : 366.62 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (69.7%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8718005952380954
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,4.791541927135544e-20,5.543215066954932e-19)
    sum a = (-3.489200831340103e-17,-1.364631140848203e-17,1.0057446505057507e-17)
    sum e = 1.196365073897868
    sum de = -1.588356182691264e-17
Info: cfl dt = 0.002370855844916675 cfl multiplier : 0.9999999999311312        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5775e+04    |       13440 |   2.043e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.89682007080212 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.1587113647843884, dt = 0.0012886352156115943 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.97 us    (1.8%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1333.00 ns (0.3%)
   LB compute        : 369.54 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (71.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8718005952380954
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-3.1145022526381037e-19,5.67797718365562e-19)
    sum a = (6.655451736791271e-18,7.359808400080196e-18,-3.1710424473783035e-17)
    sum e = 1.1963598811906426
    sum de = -1.100465205072787e-17
Info: cfl dt = 0.002369680883029595 cfl multiplier : 0.9999999999540874        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.7454e+04    |       13440 |   1.992e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 23.283149538004952 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 89                                                      [SPH][rank=0]
Info: time since start : 626.701752082 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1827.33 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1829.95 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1765.03 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.16, dt = 0.002369680883029595 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.99 us    (1.6%)
   patch tree reduce : 1553.00 ns (0.3%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.2%)
   LB compute        : 584.66 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.00 us    (78.4%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8758184523809525
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,-5.845681151105364e-19,4.367789937954494e-19)
    sum a = (2.2472331638265703e-17,3.0665868333667484e-19,-6.676534521270668e-17)
    sum e = 1.19636486849559
    sum de = -3.268869550043796e-17
Info: cfl dt = 0.0023383188026471977 cfl multiplier : 0.9999999999693916       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4405e+04    |       13440 |   2.087e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 40.880148607690344 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1623696808830296, dt = 0.0023383188026471977 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.66 us    (1.9%)
   patch tree reduce : 1403.00 ns (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 340.01 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (70.7%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8644345238095241
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,4.599880250050123e-19,2.3583370422620256e-19)
    sum a = (2.1251686332327923e-17,2.7139293475295722e-17,-1.3821202688822478e-17)
    sum e = 1.1963645832104324
    sum de = 3.2526065174565133e-19
Info: cfl dt = 0.002334912238225687 cfl multiplier : 0.9999999999795944        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4224e+04    |       13440 |   2.093e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 40.22565350621414 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.16470799968567681, dt = 0.002334912238225687 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.25 us    (1.7%)
   patch tree reduce : 1243.00 ns (0.3%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 344.75 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 2.95 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (75.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.864285714285714
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,3.162417671909459e-19,2.83898859182781e-19)
    sum a = (-4.218952666842847e-18,-4.906538933386797e-17,-4.0294771307616806e-17)
    sum e = 1.1963643541390085
    sum de = -1.620882247865829e-17
Info: cfl dt = 0.0023335694989747207 cfl multiplier : 0.9999999999863963       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5003e+04    |       13440 |   2.068e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 40.654562170798776 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.1670429119239025, dt = 0.0023335694989747207 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.87 us    (1.9%)
   patch tree reduce : 1213.00 ns (0.3%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 334.48 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 2.98 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (72.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8639136904761904
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-2.395770963567772e-19,1.4569282172196516e-19)
    sum a = (-2.5816827903406313e-17,6.194505403400832e-17,1.550782544717419e-17)
    sum e = 1.1963640609222967
    sum de = -1.713039432527097e-17
Info: cfl dt = 0.0023322589866447067 cfl multiplier : 0.9999999999909308       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5079e+04    |       13440 |   2.065e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 40.67844033855599 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.16937648142287723, dt = 0.0023322589866447067 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.55 us    (1.8%)
   patch tree reduce : 1272.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1353.00 ns (0.4%)
   LB compute        : 339.51 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (73.8%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8790922619047619
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,-1.102054643241175e-19,2.5470040056429877e-19)
    sum a = (1.1756048118227058e-17,-2.805926952530575e-17,-1.8348011924483783e-17)
    sum e = 1.1963636561298336
    sum de = 1.734723475976807e-18
Info: cfl dt = 0.0023316725625943976 cfl multiplier : 0.9999999999939538       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6135e+04    |       13440 |   2.032e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.315188718990484 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.17170874040952194, dt = 0.0023316725625943976 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.38 us    (1.8%)
   patch tree reduce : 1393.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 330.20 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (72.7%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.879910714285714
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,1.6770396744974405e-19,1.6096586161470968e-19)
    sum a = (2.5613187371503052e-17,-6.4398323500701715e-18,-8.116872024567612e-18)
    sum e = 1.1963631373627572
    sum de = 1.5937771935536915e-17
Info: cfl dt = 0.002332591178881996 cfl multiplier : 0.9999999999959691        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5404e+04    |       13440 |   2.055e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 40.848556517126326 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.17404041297211634, dt = 0.002332591178881996 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.11 us    (2.0%)
   patch tree reduce : 1242.00 ns (0.4%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1073.00 ns (0.3%)
   LB compute        : 333.92 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (72.4%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8796130952380954
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,3.1145022526381037e-19,1.6276268983738552e-19)
    sum a = (7.767089463886717e-18,1.1346371283456969e-17,-7.171021648151056e-17)
    sum e = 1.19636248785177
    sum de = 7.914675859144182e-18
Info: cfl dt = 0.0022673879815163695 cfl multiplier : 0.9999999999973127       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5397e+04    |       13440 |   2.055e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 40.85995214679969 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.17637300415099832, dt = 0.0022673879815163695 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.09 us    (2.0%)
   patch tree reduce : 1502.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 341.50 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.90 us    (72.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8793898809523808
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-4.120726057336568e-19,-6.678211560945165e-20)
    sum a = (-1.5907919198090008e-17,-1.7479544950190467e-17,-2.0531757157775806e-17)
    sum e = 1.1963614871009878
    sum de = 2.3201926491189795e-17
Info: cfl dt = 0.0022702122198114947 cfl multiplier : 0.9999999999982085       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5826e+04    |       13440 |   2.042e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 39.97873931819403 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.1786403921325147, dt = 0.0013596078674852907 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.57 us    (1.7%)
   patch tree reduce : 1262.00 ns (0.3%)
   gen split merge   : 902.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 370.38 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 2.97 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (71.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8797619047619047
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-1.0541392239698198e-19,-3.6984714250077484e-20)
    sum a = (2.3813963377863653e-18,-6.2865030084018344e-18,4.643483281587056e-17)
    sum e = 1.1963586473135248
    sum de = -8.998878031629687e-18
Info: cfl dt = 0.0022741350196644364 cfl multiplier : 0.9999999999988057       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6294e+04    |       13440 |   2.027e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 24.14311134411648 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 98                                                      [SPH][rank=0]
Info: time since start : 635.1721262870001 (s)                                        [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1858.81 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1813.61 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1762.51 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.18, dt = 0.0022741350196644364 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.29 us   (1.5%)
   patch tree reduce : 1182.00 ns (0.2%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1483.00 ns (0.2%)
   LB compute        : 663.21 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.74 us    (77.4%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8796130952380952
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-8.62477546884398e-20,1.1619489173303694e-19)
    sum a = (3.3085597006870934e-17,-1.9779485075215528e-17,2.360313553306969e-17)
    sum e = 1.1963604883444545
    sum de = 3.0791341698588326e-17
Info: cfl dt = 0.002281048900899909 cfl multiplier : 0.9999999999992039        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.3901e+04    |       13440 |   2.103e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 38.92503110975315 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.18227413501966444, dt = 0.002281048900899909 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.19 us    (1.9%)
   patch tree reduce : 1373.00 ns (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1083.00 ns (0.3%)
   LB compute        : 348.75 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (71.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8560267857142858
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-7.474805406331449e-19,1.4449493624018126e-19)
    sum a = (4.886893611485542e-17,-1.5332934166833741e-18,7.556261619092753e-18)
    sum e = 1.1963597910233421
    sum de = 1.4094628242311558e-18
Info: cfl dt = 0.002292786413233024 cfl multiplier : 0.9999999999994692        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5815e+04    |       13440 |   2.042e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 40.212671498608195 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.18455518392056436, dt = 0.002292786413233024 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.54 us    (1.5%)
   patch tree reduce : 1132.00 ns (0.3%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 403.61 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (71.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8550595238095238
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,1.3416317395979523e-19,1.4891213895425934e-19)
    sum a = (-6.233796047203343e-18,7.05314971674352e-18,4.374677779474752e-17)
    sum e = 1.1963593303208713
    sum de = 4.087442190270352e-17
Info: cfl dt = 0.002308951987650353 cfl multiplier : 0.9999999999996462        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5463e+04    |       13440 |   2.053e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 40.203298790686915 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.18684797033379738, dt = 0.002308951987650353 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.93 us    (1.8%)
   patch tree reduce : 1283.00 ns (0.3%)
   gen split merge   : 931.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 367.31 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (71.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8550595238095235
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-7.474805406331449e-19,2.752890572824593e-19)
    sum a = (-2.122653073721046e-17,-2.729262281696406e-17,2.2232754541908927e-18)
    sum e = 1.196359092944283
    sum de = -1.1926223897340549e-17
Info: cfl dt = 0.002264749534699462 cfl multiplier : 0.9999999999997641        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5363e+04    |       13440 |   2.056e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 40.42507042772666 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.18915692232144773, dt = 0.002264749534699462 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.26 us    (1.9%)
   patch tree reduce : 1282.00 ns (0.3%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 367.56 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (69.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8694196428571426
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-1.1499700625125307e-19,2.4758795551620695e-19)
    sum a = (-1.5812088359547297e-17,9.966407208441932e-18,6.3583761373088674e-18)
    sum e = 1.1963590128531358
    sum de = 3.859759734048396e-17
Info: cfl dt = 0.002281397542953236 cfl multiplier : 0.9999999999998428        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5710e+04    |       13440 |   2.045e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 39.86163093687018 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.1914216718561472, dt = 0.002281397542953236 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.81 us    (1.7%)
   patch tree reduce : 1292.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.3%)
   LB compute        : 391.48 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (74.7%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8796875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-9.583083854271089e-21,2.593047728849056e-19)
    sum a = (1.658352660981612e-17,-5.289862287557641e-17,-2.0407177067670283e-17)
    sum e = 1.1963592494335549
    sum de = -2.3418766925686896e-17
Info: cfl dt = 0.0023032053961711436 cfl multiplier : 0.9999999999998952       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5285e+04    |       13440 |   2.059e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 39.894875699379455 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.19370306939910042, dt = 0.0023032053961711436 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.99 us    (1.9%)
   patch tree reduce : 1152.00 ns (0.3%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 352.20 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (71.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8800595238095237
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-1.629124255226085e-19,1.7680041032704043e-19)
    sum a = (4.876172536423576e-17,-4.3545533033807824e-17,5.869638860741042e-18)
    sum e = 1.1963597003679343
    sum de = 4.358492733391728e-17
Info: cfl dt = 0.002331951789149742 cfl multiplier : 0.9999999999999302        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5484e+04    |       13440 |   2.052e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 40.399042248900265 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.19600627479527158, dt = 0.002331951789149742 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.68 us    (1.7%)
   patch tree reduce : 1693.00 ns (0.4%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 363.48 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (72.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8797619047619047
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-7.858128760502293e-19,2.33999442082221e-19)
    sum a = (-2.404695210407062e-17,-1.6866227583517116e-18,-3.3298820622628465e-17)
    sum e = 1.1963603209358684
    sum de = 1.1546753136970622e-17
Info: cfl dt = 0.002366733524343464 cfl multiplier : 0.9999999999999535        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5734e+04    |       13440 |   2.045e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.05912428729482 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.19833822658442132, dt = 0.00166177341557866 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.64 us    (1.1%)
   patch tree reduce : 1452.00 ns (0.2%)
   gen split merge   : 911.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.2%)
   LB compute        : 666.14 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.76 us    (72.8%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8794642857142856
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-4.120726057336568e-19,1.2907216066221372e-19)
    sum a = (4.483206204124372e-17,-2.606598808361736e-17,-4.284596791244604e-17)
    sum e = 1.1963594480816977
    sum de = 1.9149720871525222e-17
Info: cfl dt = 0.002330789203722859 cfl multiplier : 0.9999999999999689        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6130e+04    |       13440 |   2.032e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 29.435497214049995 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 107                                                     [SPH][rank=0]
Info: time since start : 643.675666655 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1832.91 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1838.59 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1768.05 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.19999999999999998, dt = 0.002330789203722859 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.21 us   (1.5%)
   patch tree reduce : 1152.00 ns (0.2%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.1%)
   LB compute        : 667.93 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.13 us    (75.7%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8796874999999997
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-3.545741026080303e-19,1.987741221335136e-20)
    sum a = (4.274055399004906e-18,-1.3186323383477017e-17,1.6470925374528434e-17)
    sum e = 1.1963612272301805
    sum de = -1.7875783318854754e-17
Info: cfl dt = 0.0023489084663178587 cfl multiplier : 0.9999999999999792       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4553e+04    |       13440 |   2.082e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 40.30146766642852 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.20233078920372286, dt = 0.0023489084663178587 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.75 us    (1.7%)
   patch tree reduce : 1112.00 ns (0.3%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1393.00 ns (0.3%)
   LB compute        : 380.23 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (69.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.872247023809524
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-6.803989536532473e-19,1.3262838318625963e-19)
    sum a = (6.540454730540018e-18,2.0392802441888877e-17,3.596052216315226e-17)
    sum e = 1.196361912186547
    sum de = -2.6508743117270583e-17
Info: cfl dt = 0.0023824547302233323 cfl multiplier : 0.9999999999999861       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6060e+04    |       13440 |   2.034e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.56340179287416 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2046796976700407, dt = 0.0023824547302233323 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.33 us    (1.6%)
   patch tree reduce : 1272.00 ns (0.3%)
   gen split merge   : 590.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 369.63 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.30 us    (72.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8639136904761904
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,-6.51649702090434e-19,2.252024705753706e-19)
    sum a = (5.2912997501357817e-17,-1.9779485075215528e-17,-4.795375160677253e-17)
    sum e = 1.1963624455964532
    sum de = 4.662069341687669e-18
Info: cfl dt = 0.0024190986990474993 cfl multiplier : 0.9999999999999908       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5953e+04    |       13440 |   2.038e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 42.088129422362826 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.20706215240026404, dt = 0.0024190986990474993 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.17 us    (1.7%)
   patch tree reduce : 1232.00 ns (0.3%)
   gen split merge   : 701.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 350.38 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 2.97 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.75 us    (71.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8639136904761906
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,-2.0124476093969286e-19,8.703386703586048e-21)
    sum a = (1.0555766865479605e-17,4.155225159211944e-17,2.782208819991254e-17)
    sum e = 1.196362848751616
    sum de = -1.5395670849294163e-17
Info: cfl dt = 0.0024024226608865113 cfl multiplier : 0.9999999999999938       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5770e+04    |       13440 |   2.043e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 42.61703339340729 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.20948125109931154, dt = 0.0024024226608865113 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.25 us    (1.6%)
   patch tree reduce : 1122.00 ns (0.3%)
   gen split merge   : 701.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 373.05 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.43 us    (71.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8713541666666664
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,-5.941511989648075e-19,1.7043664370506354e-19)
    sum a = (-2.650680994091383e-17,-1.6866227583517116e-18,2.720637506227562e-17)
    sum e = 1.1963628895447658
    sum de = 4.7921736023859296e-17
Info: cfl dt = 0.002367298500842901 cfl multiplier : 0.9999999999999959        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5230e+04    |       13440 |   2.060e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.976033476837884 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.21188367376019804, dt = 0.002367298500842901 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.14 us    (1.9%)
   patch tree reduce : 1112.00 ns (0.3%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 364.50 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (70.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8798363095238093
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-1.9166167708542177e-19,2.3822947518977035e-19)
    sum a = (3.334913181286339e-18,-2.0891122802310974e-17,-7.704080687544886e-17)
    sum e = 1.1963627233291225
    sum de = -6.830473686658678e-18
Info: cfl dt = 0.0023687985322400577 cfl multiplier : 0.9999999999999973       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5804e+04    |       13440 |   2.042e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.72598843211147 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.21425097226104095, dt = 0.0023687985322400577 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.15 us    (1.9%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 357.61 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.26 us    (73.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8703869047619048
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-6.803989536532473e-19,-7.621546377849975e-20)
    sum a = (1.1940522482421777e-17,-4.0248952187938574e-17,8.836561622023371e-17)
    sum e = 1.1963626055035526
    sum de = -2.7430314963883262e-17
Info: cfl dt = 0.0023699405160304146 cfl multiplier : 0.9999999999999982       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5902e+04    |       13440 |   2.039e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.81460126478993 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.216619770793281, dt = 0.0023699405160304146 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.73 us    (1.6%)
   patch tree reduce : 1192.00 ns (0.3%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1413.00 ns (0.3%)
   LB compute        : 392.24 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.96 us    (78.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8686011904761903
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-2.395770963567772e-19,3.3525819921426513e-19)
    sum a = (-4.341136985984803e-18,2.771427850655199e-17,2.1672144136434067e-17)
    sum e = 1.196362431018313
    sum de = -1.5070410197548512e-17
Info: cfl dt = 0.002340249886180721 cfl multiplier : 0.9999999999999988        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5218e+04    |       13440 |   2.061e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.40091427619999 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.21898971130931144, dt = 0.0010102886906885322 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.48 us    (1.8%)
   patch tree reduce : 1372.00 ns (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 325.43 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 21.43 us   (5.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (71.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8683779761904762
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-1.5332934166833742e-19,3.0452494982224727e-19)
    sum a = (1.8150360819989442e-17,4.7397932743224805e-17,3.008609176048408e-17)
    sum e = 1.19635909045263
    sum de = 3.5128150388530344e-17
Info: cfl dt = 0.0023310832188742237 cfl multiplier : 0.9999999999999991       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.7792e+04    |       13440 |   1.983e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 18.345447401076996 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 116                                                     [SPH][rank=0]
Info: time since start : 652.345534078 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1848.17 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1848.22 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1783.41 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.21999999999999997, dt = 0.0023310832188742237 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.99 us    (1.4%)
   patch tree reduce : 1433.00 ns (0.2%)
   gen split merge   : 531.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1193.00 ns (0.2%)
   LB compute        : 689.93 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 5.48 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.10 us    (83.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.872693452380952
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-4.791541927135544e-19,3.4970769283828324e-19)
    sum a = (-4.0613109374400875e-17,3.6588214155607017e-17,4.007166513663456e-17)
    sum e = 1.1963620430734785
    sum de = 2.1250362580715887e-17
Info: cfl dt = 0.0023089568631086094 cfl multiplier : 0.9999999999999994       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4599e+04    |       13440 |   2.081e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 40.335657187239 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 0.2223310832188742, dt = 0.0023089568631086094 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.03 us    (1.9%)
   patch tree reduce : 1293.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 341.54 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (71.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8754464285714285
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-2.779094317738616e-19,4.632073422373064e-19)
    sum a = (-1.10540872259017e-17,7.853337218575158e-18,-5.820765133084259e-17)
    sum e = 1.1963617905196862
    sum de = -1.9081958235744878e-17
Info: cfl dt = 0.0023147290598281144 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5408e+04    |       13440 |   2.055e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 40.45314986775779 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.22464004008198282, dt = 0.0023147290598281144 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.85 us    (1.6%)
   patch tree reduce : 1342.00 ns (0.3%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 412.67 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 2.98 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.04 us    (63.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8598214285714285
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-4.120726057336568e-19,2.0671011345033185e-19)
    sum a = (-1.5874378404600057e-17,-1.1576365295959475e-17,-5.551959630971956e-17)
    sum e = 1.1963616132207746
    sum de = 3.144186300207963e-18
Info: cfl dt = 0.002372028843406126 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5021e+04    |       13440 |   2.067e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 40.31386559493289 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.22695476914181092, dt = 0.002372028843406126 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.64 us    (1.9%)
   patch tree reduce : 1253.00 ns (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 337.61 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.75 us    (67.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8579613095238097
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-2.874925156281327e-20,9.860094871933612e-20)
    sum a = (-2.262566097993404e-17,-2.0661128789808466e-17,9.511210725364056e-17)
    sum e = 1.19636157828871
    sum de = -1.1600963245594897e-17
Info: cfl dt = 0.002362461563540935 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5016e+04    |       13440 |   2.067e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.30910936860097 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.22932679798521705, dt = 0.002362461563540935 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.80 us    (1.7%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 370.25 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.76 us    (74.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8575892857142855
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-6.803989536532473e-19,4.83646263270244e-19)
    sum a = (-4.0871852638466195e-17,1.2074685656381571e-17,-2.126965461455468e-17)
    sum e = 1.196361360826442
    sum de = 3.0357660829594124e-18
Info: cfl dt = 0.002356624885086297 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4653e+04    |       13440 |   2.079e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 40.91285471515774 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.231689259548758, dt = 0.002356624885086297 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.93 us    (2.2%)
   patch tree reduce : 1373.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 337.97 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 2.99 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (66.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8741071428571427
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-2.4916018021104833e-19,2.8651923367418327e-19)
    sum a = (-3.729736236082308e-17,-4.9065389333867974e-18,7.804942645111088e-17)
    sum e = 1.1963611546641035
    sum de = -1.6263032587282567e-17
Info: cfl dt = 0.0023547729450244647 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5429e+04    |       13440 |   2.054e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.30113674296036 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.23404588443384428, dt = 0.0023547729450244647 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.43 us    (1.6%)
   patch tree reduce : 1322.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 375.75 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.61 us    (88.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8741815476190475
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-5.270696119849099e-19,6.016379832259567e-19)
    sum a = (-3.14900135451348e-17,6.363167679236003e-18,-3.835389735575647e-17)
    sum e = 1.196360959592444
    sum de = -2.179246366695864e-17
Info: cfl dt = 0.0023620306199504484 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5358e+04    |       13440 |   2.056e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.224247920175586 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.23640065737886873, dt = 0.0023620306199504484 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.70 us    (1.8%)
   patch tree reduce : 1313.00 ns (0.3%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1513.00 ns (0.4%)
   LB compute        : 359.61 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (74.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8746279761904763
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-8.62477546884398e-20,3.6355824372140945e-19)
    sum a = (-1.1413452870436867e-17,6.2865030084018344e-18,4.9367256475277513e-17)
    sum e = 1.1963607956713156
    sum de = 1.2793585635328952e-17
Info: cfl dt = 0.0024229588215065995 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4956e+04    |       13440 |   2.069e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.09662575239949 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.23876268799881917, dt = 0.0012373120011807959 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.19 us    (1.5%)
   patch tree reduce : 1243.00 ns (0.3%)
   gen split merge   : 671.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 380.31 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (71.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.874404761904762
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-1.2458009010552416e-19,5.426421232481004e-19)
    sum a = (3.3229343264685e-17,1.3492982066813693e-17,-6.06010265234468e-17)
    sum e = 1.1963589833415806
    sum de = -3.7947076036992655e-18
Info: cfl dt = 0.0024229837663664695 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5918e+04    |       13440 |   2.039e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 21.846838438127097 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 125                                                     [SPH][rank=0]
Info: time since start : 660.910097496 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1845.54 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1841.02 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1779.30 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.23999999999999996, dt = 0.0024229837663664695 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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   (1.7%)
   patch tree reduce : 1232.00 ns (0.2%)
   gen split merge   : 671.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 585.45 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.50 us    (78.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.874553571428571
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-3.6415718646230135e-19,3.0980313272635754e-19)
    sum a = (4.345928527911939e-18,-2.092945513772806e-17,8.100101627822638e-18)
    sum e = 1.1963607132425318
    sum de = 7.48099499014998e-18
Info: cfl dt = 0.0024419164394730293 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4499e+04    |       13440 |   2.084e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.861028195762906 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.24242298376636642, dt = 0.0024419164394730293 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.13 us    (2.0%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 337.78 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (71.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8746279761904756
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-3.449910187537592e-19,4.1386943395633263e-19)
    sum a = (5.299924525604626e-17,-4.2625556983797805e-17,4.187448278671931e-17)
    sum e = 1.1963606841353989
    sum de = -1.7889335846010823e-17
Info: cfl dt = 0.002446332265148224 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4968e+04    |       13440 |   2.069e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 42.49486425284064 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.24486490020583945, dt = 0.002446332265148224 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.75 us    (2.0%)
   patch tree reduce : 1383.00 ns (0.4%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.3%)
   LB compute        : 362.76 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (71.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8529761904761906
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-1.8207859323115067e-19,5.7872842338684e-19)
    sum a = (8.58165159149976e-18,-3.449910187537592e-17,2.2814926886055893e-17)
    sum e = 1.1963607046424451
    sum de = -2.2985086056692694e-17
Info: cfl dt = 0.002448874954110023 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4841e+04    |       13440 |   2.073e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 42.48850823540671 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.24731123247098769, dt = 0.002448874954110023 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.53 us    (1.9%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1373.00 ns (0.3%)
   LB compute        : 377.77 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (72.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.850818452380952
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-1.9166167708542177e-19,5.9879300520672e-19)
    sum a = (3.350246115453172e-17,5.3818598925586433e-17,2.4597380482950318e-17)
    sum e = 1.1963607955187274
    sum de = -6.288372600415926e-18
Info: cfl dt = 0.0024666984269285743 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4613e+04    |       13440 |   2.080e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 42.382723928437436 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.24976010742509772, dt = 0.0024666984269285743 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.64 us    (1.9%)
   patch tree reduce : 1684.00 ns (0.5%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 338.81 us  (94.4%)
   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.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8500744047619047
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-3.25824851045217e-19,6.675216847240705e-19)
    sum a = (-5.07136797568026e-17,3.2505820433687534e-17,-5.108622214163739e-17)
    sum e = 1.1963609773817183
    sum de = 3.209238430557093e-17
Info: cfl dt = 0.002440569487904288 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4677e+04    |       13440 |   2.078e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 42.73334353406912 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2522268058520263, dt = 0.002440569487904288 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.01 us    (1.9%)
   patch tree reduce : 1643.00 ns (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1373.00 ns (0.4%)
   LB compute        : 339.38 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (70.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8725446428571426
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-1.724955093768796e-19,4.456133992236056e-19)
    sum a = (1.9079919953853738e-17,3.557240726705428e-17,-3.821254686890597e-18)
    sum e = 1.1963611110040473
    sum de = -3.903127820947816e-18
Info: cfl dt = 0.0024496404504118596 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5028e+04    |       13440 |   2.067e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 42.51065753642418 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.25466737533993056, dt = 0.0024496404504118596 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.23 us    (1.9%)
   patch tree reduce : 1282.00 ns (0.3%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1343.00 ns (0.3%)
   LB compute        : 363.61 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (71.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8739583333333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,2.2999401250250614e-19,5.008658670708874e-19)
    sum a = (2.5213093620587234e-17,1.5639592850170416e-17,1.281977042605115e-17)
    sum e = 1.1963613172483942
    sum de = -2.2985086056692694e-17
Info: cfl dt = 0.002463989787874691 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4407e+04    |       13440 |   2.087e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 42.26066408859238 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2571170157903424, dt = 0.002463989787874691 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.52 us    (1.6%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 378.29 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (69.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8742559523809526
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,2.395770963567772e-19,5.405458236549786e-19)
    sum a = (1.717288626685379e-17,1.1193041941788632e-17,-1.7812557114126384e-18)
    sum e = 1.1963615182598366
    sum de = -4.336808689942018e-17
Info: cfl dt = 0.0024812638181461216 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4968e+04    |       13440 |   2.069e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 42.8788046781233 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.2595810055782171, dt = 0.00041899442178283675 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.28 us    (2.0%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1133.00 ns (0.3%)
   LB compute        : 336.46 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (70.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8744047619047621
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-9.583083854271089e-21,5.156896999079629e-19)
    sum a = (-8.01145810217063e-18,1.962615573354719e-17,-9.330569594711045e-17)
    sum e = 1.1963588307229975
    sum de = -3.2526065174565133e-18
Info: cfl dt = 0.002485394310878373 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.7212e+04    |       13440 |   2.000e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 7.543234442858068 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 134                                                     [SPH][rank=0]
Info: time since start : 669.425821251 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1854.16 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1829.75 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1780.96 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.25999999999999995, dt = 0.002485394310878373 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.17 us   (1.8%)
   patch tree reduce : 1522.00 ns (0.3%)
   gen split merge   : 490.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.2%)
   LB compute        : 546.56 us  (95.6%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.30 us    (76.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8745535714285717
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,2.874925156281327e-20,2.5200515823028505e-19)
    sum a = (4.887372765678255e-19,1.0119736550110269e-17,-2.3641467868486776e-17)
    sum e = 1.1963616322350619
    sum de = -8.456776945386935e-18
Info: cfl dt = 0.002493799778354424 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4983e+04    |       13440 |   2.068e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.261204402967685 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2624853943108783, dt = 0.002493799778354424 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.84 us    (1.9%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 343.78 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (70.4%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8742559523809523
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.724955093768796e-19,3.0905445430024263e-19)
    sum a = (-1.627207638455231e-17,-3.52657485837176e-18,-5.349996138743192e-17)
    sum e = 1.1963617806134752
    sum de = 1.3010426069826053e-17
Info: cfl dt = 0.0024385754997966387 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5647e+04    |       13440 |   2.047e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.85092264639628 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2649791940892327, dt = 0.0024385754997966387 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.49 us    (1.7%)
   patch tree reduce : 1252.00 ns (0.3%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 351.52 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (70.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8651785714285711
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-1.8207859323115067e-19,1.241308830498552e-19)
    sum a = (-1.7211218602270874e-17,1.655956890018044e-17,-1.3861930795203129e-17)
    sum e = 1.1963616975913791
    sum de = 2.211772431870429e-17
Info: cfl dt = 0.0024539751791763605 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5838e+04    |       13440 |   2.041e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.00472582383615 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.26741776958902935, dt = 0.0024539751791763605 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.57 us    (1.8%)
   patch tree reduce : 1433.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 340.95 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (70.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8578125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-4.791541927135544e-20,1.4561795387935365e-19)
    sum a = (9.510252416978629e-17,-1.962615573354719e-17,3.0306502689132318e-18)
    sum e = 1.1963617720465545
    sum de = -4.662069341687669e-18
Info: cfl dt = 0.0024753587663993476 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5908e+04    |       13440 |   2.039e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.32254230176813 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2698717447682057, dt = 0.0024753587663993476 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.67 us    (2.1%)
   patch tree reduce : 1452.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1413.00 ns (0.4%)
   LB compute        : 344.40 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.98 us    (70.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8575148809523807
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-3.8332335417084355e-20,1.7683784424834618e-19)
    sum a = (3.7699851882702466e-17,-2.4532694666933986e-17,2.2005156300369988e-17)
    sum e = 1.1963618794710975
    sum de = 0
Info: cfl dt = 0.002476638448002137 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5420e+04    |       13440 |   2.054e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.37599991058173 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.27234710353460506, dt = 0.002476638448002137 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.50 us    (1.9%)
   patch tree reduce : 1874.00 ns (0.5%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 377.85 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.01 us    (76.7%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8682291666666664
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-4.120726057336568e-19,2.4653980571964607e-19)
    sum a = (-1.3234238802748373e-17,3.342579648369756e-17,-3.373005939607066e-17)
    sum e = 1.1963619690642988
    sum de = -1.4094628242311558e-17
Info: cfl dt = 0.0024832733940336827 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5842e+04    |       13440 |   2.041e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.67855824787381 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2748237419826072, dt = 0.0024832733940336827 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.65 us    (1.9%)
   patch tree reduce : 1273.00 ns (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 336.53 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.52 us    (71.4%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8735863095238094
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,1.9166167708542177e-19,9.433348169048103e-20)
    sum a = (-3.909898212542604e-18,-1.2189682662632825e-17,1.9113460747343686e-17)
    sum e = 1.1963620973209694
    sum de = -1.7997756063259374e-17
Info: cfl dt = 0.002499134121014914 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5549e+04    |       13440 |   2.050e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.60092552524292 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2773070153766409, dt = 0.002499134121014914 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.26 us    (1.9%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1563.00 ns (0.4%)
   LB compute        : 359.63 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (69.8%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.865997023809524
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-3.354079348994881e-19,2.243040564640327e-19)
    sum a = (-4.0526861619712433e-17,6.815489237157599e-17,-5.462836951127234e-17)
    sum e = 1.196362258359748
    sum de = -1.2468324983583301e-17
Info: cfl dt = 0.0024721606821933063 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5607e+04    |       13440 |   2.049e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.91812535402617 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2798061494976558, dt = 0.00019385050234416168 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.40 us    (2.0%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.3%)
   LB compute        : 347.11 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.63 us    (70.7%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.865997023809524
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,4.31238773442199e-20,1.2023775523405757e-19)
    sum a = (-1.2045936404818758e-17,2.9439233600320786e-17,8.481029211029914e-18)
    sum e = 1.1963590834440423
    sum de = 2.8080836267374565e-17
Info: cfl dt = 0.00247283546758809 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.7497e+04    |       13440 |   1.991e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 3.504721017823579 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 143                                                     [SPH][rank=0]
Info: time since start : 677.933798852 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1836.01 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1830.40 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1782.11 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.27999999999999997, dt = 0.00247283546758809 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.17 us   (1.7%)
   patch tree reduce : 1333.00 ns (0.2%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 581.74 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.54 us    (71.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.865848214285714
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.4853779974120188e-19,1.3012031045877463e-19)
    sum a = (-4.8480821218757436e-17,-2.1466107833567237e-18,3.2536965456213914e-17)
    sum e = 1.196362226869123
    sum de = -6.179952383167375e-18
Info: cfl dt = 0.0024902344098713418 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4818e+04    |       13440 |   2.074e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 42.93308483259619 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.28247283546758806, dt = 0.0024902344098713418 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.81 us    (1.9%)
   patch tree reduce : 1042.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1453.00 ns (0.4%)
   LB compute        : 340.06 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (69.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8706845238095235
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,-1.629124255226085e-19,2.3785513597671287e-19)
    sum a = (4.6803781544259996e-17,-3.204583240868252e-17,-8.389989914414338e-18)
    sum e = 1.1963623542717852
    sum de = -9.486769009248164e-18
Info: cfl dt = 0.002488037388301522 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5674e+04    |       13440 |   2.046e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.80606801245207 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2849630698774594, dt = 0.002488037388301522 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.71 us    (1.8%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1153.00 ns (0.3%)
   LB compute        : 348.69 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (69.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.869642857142857
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,0,1.6553280001401075e-19)
    sum a = (2.386187879713501e-18,-2.920923958781828e-17,-2.2148902558184054e-17)
    sum e = 1.1963623072801117
    sum de = -1.5612511283791264e-17
Info: cfl dt = 0.0024605524301107937 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5543e+04    |       13440 |   2.051e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.68026978425622 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2874511072657609, dt = 0.0024605524301107937 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.84 us    (1.8%)
   patch tree reduce : 1192.00 ns (0.3%)
   gen split merge   : 882.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 363.24 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (71.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.85922619047619
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.4374625781406633e-19,1.0563852592481646e-19)
    sum a = (-1.4307544194426734e-17,1.4719616800160393e-17,1.0084997871138537e-17)
    sum e = 1.1963621057502638
    sum de = 1.0950441942103595e-17
Info: cfl dt = 0.0024693905969229183 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.3960e+04    |       13440 |   2.101e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 42.15483025486971 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2899116596958717, dt = 0.0024693905969229183 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.74 us    (1.7%)
   patch tree reduce : 1293.00 ns (0.3%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 373.95 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (73.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8587797619047617
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,3.4978256068089474e-19,1.5617431968757415e-19)
    sum a = (-1.1178667316007224e-17,-4.9717039035958406e-17,-5.319929213150417e-17)
    sum e = 1.1963619138468666
    sum de = 5.908901840045999e-18
Info: cfl dt = 0.00245699218489411 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5651e+04    |       13440 |   2.047e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.42447816632642 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2923810502927946, dt = 0.00245699218489411 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.97 us    (1.9%)
   patch tree reduce : 1092.00 ns (0.3%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1233.00 ns (0.3%)
   LB compute        : 350.17 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (73.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8587053571428573
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-1.2458009010552416e-19,-3.975482442670272e-20)
    sum a = (3.7872347392079344e-17,3.11258563586725e-17,5.447743594056757e-17)
    sum e = 1.1963616210343322
    sum de = 7.765598060427426e-18
Info: cfl dt = 0.002455226023426781 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.2565e+04    |       13440 |   2.148e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.17550081758569 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.2948380424776887, dt = 0.002455226023426781 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.99 us    (1.8%)
   patch tree reduce : 1173.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 375.94 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.91 us    (72.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8732886904761905
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.0541392239698198e-19,2.20710400018681e-19)
    sum a = (6.195463711786259e-18,-3.231415875660211e-17,-6.03255128626365e-17)
    sum e = 1.1963613345319883
    sum de = 6.627185779317646e-18
Info: cfl dt = 0.0024604107801398513 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4908e+04    |       13440 |   2.071e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 42.686719466004064 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.2972932685011155, dt = 0.0024604107801398513 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.88 us    (1.9%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 340.27 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (70.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8744047619047621
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,-2.20410928648235e-19,-6.760566187817807e-20)
    sum a = (2.2338168464305906e-17,-3.6837374335818064e-17,5.665519174645067e-17)
    sum e = 1.196361082867038
    sum de = -1.322049024074512e-17
Info: cfl dt = 0.002415650663701512 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5228e+04    |       13440 |   2.060e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 42.98774845268955 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.29975367928125535, dt = 0.00024632071874464145 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.19 us    (1.9%)
   patch tree reduce : 1222.00 ns (0.3%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 356.30 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (70.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8744047619047617
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,-2.922840575552682e-19,8.130647707608127e-20)
    sum a = (-5.0129111641692064e-17,-5.366526958391809e-19,-2.6742793380825256e-17)
    sum e = 1.196359019257771
    sum de = -1.5009423825346202e-18
Info: cfl dt = 0.002416564848447996 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.7892e+04    |       13440 |   1.980e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 4.479415267358 (tsim/hr)                                [sph::Model][rank=0]
Info: iteration since start : 152                                                     [SPH][rank=0]
Info: time since start : 686.663488589 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1855.59 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1864.43 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1789.21 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.3, dt = 0.002416564848447996 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.99 us    (1.6%)
   patch tree reduce : 1222.00 ns (0.2%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1041.00 ns (0.2%)
   LB compute        : 584.11 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (74.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8751488095238094
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-4.983203604220967e-19,1.7331905564560602e-20)
    sum a = (-6.324835343818918e-18,-2.1619437175235577e-17,2.5179552827097286e-17)
    sum e = 1.1963608505562406
    sum de = -1.8973538018496328e-19
Info: cfl dt = 0.002418677873877593 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4403e+04    |       13440 |   2.087e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.687953957101705 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.302416564848448, dt = 0.002418677873877593 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.99 us    (2.0%)
   patch tree reduce : 1292.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 338.25 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 us    (71.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8752976190476194
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,-1.7728705130401514e-19,1.398531299982687e-19)
    sum a = (2.1868597355446624e-17,7.244811393828942e-18,4.5948491310266305e-17)
    sum e = 1.1963607091940587
    sum de = 2.350008208862331e-17
Info: cfl dt = 0.0024030582729082524 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4944e+04    |       13440 |   2.069e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 42.074361488979456 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3048352427223256, dt = 0.0024030582729082524 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.90 us    (1.8%)
   patch tree reduce : 1323.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 357.23 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.71 us    (74.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8750744047619048
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-6.133173666733497e-19,2.764869427642432e-19)
    sum a = (3.7881930475933616e-17,-1.6291242552260852e-17,6.297763131930603e-17)
    sum e = 1.1963606371353328
    sum de = -1.599198204416119e-17
Info: cfl dt = 0.0023928416731489694 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4856e+04    |       13440 |   2.072e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.74621282858129 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.30723830099523386, dt = 0.0023928416731489694 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.38 us    (2.0%)
   patch tree reduce : 1433.00 ns (0.4%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 343.82 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (73.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8543898809523809
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-2.060363028668284e-19,4.410090269029988e-19)
    sum a = (-8.346866037070119e-18,3.319580247119505e-17,-1.6969245734950532e-17)
    sum e = 1.1963606325988598
    sum de = 1.0381235801548705e-17
Info: cfl dt = 0.0023991083069230725 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5150e+04    |       13440 |   2.063e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.7575280202366 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.3096311426683828, dt = 0.0023991083069230725 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.86 us    (1.9%)
   patch tree reduce : 1403.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 346.85 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (71.8%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8502976190476186
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,2.874925156281327e-20,3.013805004325646e-19)
    sum a = (6.415874640434493e-17,-1.9856149746049694e-17,-3.5984479872787935e-17)
    sum e = 1.1963606882690925
    sum de = -1.0055975149803054e-17
Info: cfl dt = 0.002407899984263413 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4152e+04    |       13440 |   2.095e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.2253339105262 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.3120302509753059, dt = 0.002407899984263413 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.45 us    (2.0%)
   patch tree reduce : 1433.00 ns (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.3%)
   LB compute        : 349.97 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 us    (74.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8501488095238094
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,2.252024705753706e-19,1.8335134655554608e-19)
    sum a = (8.62477546884398e-19,4.829874262552629e-18,-3.138699539370138e-17)
    sum e = 1.1963607689023368
    sum de = 2.791820594150174e-18
Info: cfl dt = 0.002410729692780644 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4714e+04    |       13440 |   2.077e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.73855798900452 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.31443815095956934, dt = 0.002410729692780644 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.82 us    (1.8%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1523.00 ns (0.4%)
   LB compute        : 350.04 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (69.7%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.870386904761905
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,3.354079348994881e-20,1.2018160435209894e-19)
    sum a = (-1.389547158869308e-17,3.2275826421185026e-17,6.601786467207353e-17)
    sum e = 1.1963608473271419
    sum de = 2.5614276324970042e-17
Info: cfl dt = 0.002428572963633691 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.2531e+04    |       13440 |   2.149e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 40.37852375405098 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.31684888065235, dt = 0.002428572963633691 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.46 us    (1.7%)
   patch tree reduce : 1312.00 ns (0.3%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 370.74 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (72.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8750000000000002
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.9166167708542177e-19,3.9975684562406625e-19)
    sum a = (2.86725868919791e-17,-5.803515582146571e-17,5.099158918857646e-17)
    sum e = 1.1963609438764917
    sum de = 5.1228552649940085e-18
Info: cfl dt = 0.002377968802553459 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4388e+04    |       13440 |   2.087e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.88509290813964 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3192774536159837, dt = 0.0007225463840163093 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.55 us    (1.7%)
   patch tree reduce : 1373.00 ns (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1193.00 ns (0.3%)
   LB compute        : 357.08 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (69.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-3.7374027031657247e-19,4.420010258176011e-19)
    sum a = (-2.0124476093969286e-18,4.2548892312963635e-17,4.188765952701893e-17)
    sum e = 1.1963593514756743
    sum de = 2.222614453595284e-17
Info: cfl dt = 0.002383694838671722 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.7579e+04    |       13440 |   1.989e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 13.079139105468116 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 161                                                     [SPH][rank=0]
Info: time since start : 695.236369758 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1869.14 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1859.54 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1795.67 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.32, dt = 0.002383694838671722 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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    (1.5%)
   patch tree reduce : 1583.00 ns (0.2%)
   gen split merge   : 490.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.2%)
   LB compute        : 623.39 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.42 us    (76.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8744791666666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-4.360303153693346e-19,5.28080327860165e-19)
    sum a = (3.930980997022e-17,7.896461095919377e-18,6.204088487255102e-17)
    sum e = 1.1963609163871827
    sum de = 2.0125502826762176e-18
Info: cfl dt = 0.0023963465294955916 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.2571e+04    |       13440 |   2.148e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 39.95062004558866 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.32238369483867174, dt = 0.0023963465294955916 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.74 us    (1.7%)
   patch tree reduce : 1322.00 ns (0.3%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 372.51 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (72.4%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8744791666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-2.922840575552682e-19,7.036079848628101e-19)
    sum a = (-2.25394132252456e-17,1.0656389245949451e-17,2.4343428760812134e-17)
    sum e = 1.1963610142239023
    sum de = -7.575862680242462e-18
Info: cfl dt = 0.0024162641920674366 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5956e+04    |       13440 |   2.038e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 42.335589546481096 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.32478004136816735, dt = 0.0024162641920674366 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.30 us    (2.0%)
   patch tree reduce : 1853.00 ns (0.5%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 350.02 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (73.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8743303571428571
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-4.671753378957156e-19,7.268170160723729e-19)
    sum a = (4.1226426741074224e-17,6.7464910334068465e-18,-1.1068461851683107e-18)
    sum e = 1.1963610969398084
    sum de = 1.645276796746753e-17
Info: cfl dt = 0.0024393805922127624 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5899e+04    |       13440 |   2.039e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 42.65054767420294 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.32719630556023477, dt = 0.0024393805922127624 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.56 us    (1.8%)
   patch tree reduce : 1363.00 ns (0.4%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 343.42 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (70.7%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8655505952380953
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-5.773808022198331e-19,6.793133699353806e-19)
    sum a = (-7.283143729246027e-18,-1.3799640750150367e-17,-7.256790248646782e-18)
    sum e = 1.1963611830543495
    sum de = 1.2902005852577503e-17
Info: cfl dt = 0.002437341812669453 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5836e+04    |       13440 |   2.041e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.017898995424176 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.32963568615244754, dt = 0.002437341812669453 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.08 us    (1.9%)
   patch tree reduce : 1373.00 ns (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 355.12 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.8%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8588541666666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-6.42066618236163e-19,6.607087110464247e-19)
    sum a = (1.945366022417031e-17,6.232837738817917e-17,1.9575844543312267e-17)
    sum e = 1.1963612219888538
    sum de = 4.607859233063394e-19
Info: cfl dt = 0.002426798315822397 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6058e+04    |       13440 |   2.035e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.12666085583018 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.332073027965117, dt = 0.002426798315822397 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.80 us    (1.8%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.3%)
   LB compute        : 349.98 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (72.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8581845238095238
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,2.395770963567772e-20,7.393199457884922e-19)
    sum a = (-7.973125766753546e-17,-3.442243720454175e-17,-2.208900828409486e-18)
    sum e = 1.1963612295253976
    sum de = 4.933119884809045e-18
Info: cfl dt = 0.002439761918343882 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6223e+04    |       13440 |   2.029e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.047506352541056 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3344998262809394, dt = 0.002439761918343882 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.38 us    (1.7%)
   patch tree reduce : 1223.00 ns (0.3%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.3%)
   LB compute        : 353.17 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (70.8%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8619791666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-3.1145022526381037e-19,7.005384033157389e-19)
    sum a = (1.28604985324318e-17,1.0273065891778608e-17,4.083831184497625e-17)
    sum e = 1.1963612508815464
    sum de = -8.023096076392733e-18
Info: cfl dt = 0.0024584208025259877 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6359e+04    |       13440 |   2.025e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.36592930120611 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.33693958819928327, dt = 0.0024584208025259877 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.22 us    (1.9%)
   patch tree reduce : 1303.00 ns (0.3%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1093.00 ns (0.3%)
   LB compute        : 357.07 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (70.7%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.872693452380952
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-2.1082784479396395e-19,8.68242370765483e-19)
    sum a = (-2.3382724604421456e-17,1.3569646737647861e-17,-1.5349704563578716e-17)
    sum e = 1.196361254035986
    sum de = 3.63207727782644e-18
Info: cfl dt = 0.00248079893185407 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6147e+04    |       13440 |   2.032e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.55811573987311 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3393980090018093, dt = 0.000601990998190749 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.80 us    (1.9%)
   patch tree reduce : 1262.00 ns (0.3%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 344.42 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (68.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8679315476190481
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,2.9707559948240377e-19,7.959949026453923e-19)
    sum a = (2.1811098852320997e-17,2.37660479585923e-18,-1.19165647727861e-17)
    sum e = 1.1963594640265618
    sum de = -4.2825985813177425e-18
Info: cfl dt = 0.0024863808070179462 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.7618e+04    |       13440 |   1.988e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 10.903315808627546 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 170                                                     [SPH][rank=0]
Info: time since start : 703.797768409 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1898.69 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1886.72 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1834.03 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.34, dt = 0.0024863808070179462 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.94 us    (1.4%)
   patch tree reduce : 1073.00 ns (0.1%)
   gen split merge   : 621.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.1%)
   LB compute        : 671.70 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 27.34 us   (3.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.15 us    (74.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.865699404761905
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,2.060363028668284e-19,7.706147040000962e-19)
    sum a = (1.284133236472326e-18,-1.724955093768796e-17,-1.1475742915489628e-18)
    sum e = 1.196361227416433
    sum de = 3.2526065174565133e-18
Info: cfl dt = 0.0024773665624369563 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5306e+04    |       13440 |   2.058e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.49353885498086 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.342486380807018, dt = 0.0024773665624369563 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.82 us    (1.4%)
   patch tree reduce : 1533.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 477.31 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.03 us    (79.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8658482142857142
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,6.001406263737269e-19,7.856631403650063e-19)
    sum a = (-2.4436863828391275e-17,1.24963413459695e-17,2.5869534864604804e-17)
    sum e = 1.1963611339963778
    sum de = -5.421010862427522e-18
Info: cfl dt = 0.0024584684475742356 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5865e+04    |       13440 |   2.041e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.70699818523632 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.34496374736945495, dt = 0.0024584684475742356 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.08 us    (1.8%)
   patch tree reduce : 1232.00 ns (0.3%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 371.95 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.89 us    (72.4%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.867708333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,4.192599186243601e-19,8.710873487847197e-19)
    sum a = (-7.57063624487416e-19,-3.2199161750350857e-17,-9.094346577703264e-18)
    sum e = 1.1963610193949885
    sum de = 2.2768245622195593e-17
Info: cfl dt = 0.002449245470128675 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5720e+04    |       13440 |   2.045e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.27771343412187 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3474222158170292, dt = 0.002449245470128675 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.27 us    (1.9%)
   patch tree reduce : 1223.00 ns (0.3%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1313.00 ns (0.3%)
   LB compute        : 356.18 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (69.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8678571428571427
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-9.822660950627866e-20,8.112679425381368e-19)
    sum a = (2.2021926697114962e-17,-4.13989222504511e-18,-1.346423281525088e-17)
    sum e = 1.1963609326232747
    sum de = -1.3010426069826053e-17
Info: cfl dt = 0.002447985260739142 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6021e+04    |       13440 |   2.036e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.31298009275414 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3498714612871579, dt = 0.002447985260739142 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [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.6%)
   patch tree reduce : 1303.00 ns (0.4%)
   gen split merge   : 1012.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 344.82 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (71.8%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8581845238095236
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,3.9051066706154686e-19,7.695665542035353e-19)
    sum a = (-2.4686024008602325e-17,-2.069946112522555e-18,-2.2596312785630336e-17)
    sum e = 1.1963608836617377
    sum de = -3.393552799879629e-17
Info: cfl dt = 0.0024918669146929535 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6630e+04    |       13440 |   2.017e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.68999215065118 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.35231944654789704, dt = 0.0024918669146929535 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.01 us    (1.9%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 339.72 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (70.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8575148809523805
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-1.1104398416136624e-18,7.072016413081617e-19)
    sum a = (5.4475040169604e-17,-1.310965871264285e-17,1.939556277830379e-17)
    sum e = 1.1963609267889377
    sum de = 2.2442984970449942e-17
Info: cfl dt = 0.0024784235592961302 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6536e+04    |       13440 |   2.020e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.410140566377216 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.35481131346259, dt = 0.0024784235592961302 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.61 us    (1.7%)
   patch tree reduce : 1262.00 ns (0.3%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1313.00 ns (0.3%)
   LB compute        : 375.63 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 2.92 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (72.4%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8586309523809526
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,8.4870186384388325e-19,8.147118632982655e-19)
    sum a = (-4.202661424290586e-17,2.825093120239117e-17,3.090544543002426e-18)
    sum e = 1.1963609390887988
    sum de = -1.691355389077387e-17
Info: cfl dt = 0.0024720674467771553 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6569e+04    |       13440 |   2.019e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.1927118502686 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.3572897370218861, dt = 0.0024720674467771553 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.82 us    (1.9%)
   patch tree reduce : 1303.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 342.22 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8738839285714284
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.5638394964688632e-18,7.852139333093374e-19)
    sum a = (3.229499258889357e-18,-8.35644912092439e-18,-5.875268922505426e-17)
    sum e = 1.1963609886432103
    sum de = -2.8189256484623115e-18
Info: cfl dt = 0.0024690370917706344 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5366e+04    |       13440 |   2.056e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.28310687927557 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.35976180446866324, dt = 0.0002381955313368045 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.60 us    (2.1%)
   patch tree reduce : 1533.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1253.00 ns (0.3%)
   LB compute        : 347.34 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.46 us    (73.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8741815476190475
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-3.1145022526381037e-19,7.090733373734491e-19)
    sum a = (2.7752610841969073e-17,3.0129215637828304e-17,1.3853545596830642e-17)
    sum e = 1.1963594569454223
    sum de = -1.1058862159352145e-17
Info: cfl dt = 0.002468268144170908 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.7827e+04    |       13440 |   1.982e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 4.327546185532207 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 179                                                     [SPH][rank=0]
Info: time since start : 712.6672254580001 (s)                                        [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1884.92 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1875.10 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1823.30 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.36000000000000004, dt = 0.002468268144170908 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.40 us    (1.6%)
   patch tree reduce : 1122.00 ns (0.2%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 581.21 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (75.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.875892857142857
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,-6.803989536532473e-19,7.429884700764554e-19)
    sum a = (4.620244303240449e-18,2.2999401250250612e-18,1.8342022497074863e-17)
    sum e = 1.1963610152030562
    sum de = 2.8189256484623115e-17
Info: cfl dt = 0.0024738791850360156 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.3902e+04    |       13440 |   2.103e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 42.24844156148425 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.36246826814417094, dt = 0.0024738791850360156 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.93 us    (1.8%)
   patch tree reduce : 1332.00 ns (0.3%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 372.60 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (75.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8764880952380953
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,6.249967501207426e-19,8.060271935553323e-19)
    sum a = (1.30018490192823e-17,4.477216776715453e-17,-1.9278768943829863e-17)
    sum e = 1.1963611063042325
    sum de = 2.6237692574149207e-17
Info: cfl dt = 0.0024783500885692538 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6277e+04    |       13440 |   2.028e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.91833346525318 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.36494214732920693, dt = 0.0024783500885692538 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.79 us    (1.8%)
   patch tree reduce : 1242.00 ns (0.3%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1203.00 ns (0.3%)
   LB compute        : 364.84 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (70.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.877380952380952
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,-5.845681151105364e-19,7.156617075232605e-19)
    sum a = (-3.701466138712208e-18,-3.5629905770179906e-17,-1.1050253992359993e-16)
    sum e = 1.1963611428982739
    sum de = -5.204170427930421e-18
Info: cfl dt = 0.0024877516507984957 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6150e+04    |       13440 |   2.032e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.91350860733803 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3674204974177762, dt = 0.0024877516507984957 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.15 us    (1.6%)
   patch tree reduce : 1362.00 ns (0.3%)
   gen split merge   : 872.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 431.48 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.09 us    (75.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8735863095238097
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,3.479857324582189e-19,3.201723289280493e-19)
    sum a = (-5.701934893291298e-19,9.77474553135651e-18,-3.2869977620149835e-17)
    sum e = 1.1963611458923105
    sum de = -6.938893903907228e-18
Info: cfl dt = 0.002476778315027551 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6357e+04    |       13440 |   2.025e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.21757605724927 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3699082490685747, dt = 0.002476778315027551 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.81 us    (1.8%)
   patch tree reduce : 1363.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.3%)
   LB compute        : 356.39 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (72.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8572172619047618
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,3.761360412801402e-19,3.3570740626993407e-19)
    sum a = (-1.351693977644937e-17,-9.410588344894209e-18,-5.6396448482385354e-18)
    sum e = 1.1963610799270976
    sum de = -7.589415207398531e-18
Info: cfl dt = 0.0024713774707145297 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6946e+04    |       13440 |   2.008e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.41321015917236 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3723850273836023, dt = 0.0024713774707145297 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.65 us    (1.8%)
   patch tree reduce : 1703.00 ns (0.5%)
   gen split merge   : 1203.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 340.76 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.46 us    (73.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8568452380952376
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,1.8604658888955982e-19,3.4147223015101903e-19)
    sum a = (3.507408690663219e-18,1.0905549426160498e-17,5.017942283192699e-17)
    sum e = 1.1963609914767146
    sum de = -9.75781955236954e-18
Info: cfl dt = 0.0024761267832518288 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6495e+04    |       13440 |   2.021e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.01812618395333 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3748564048543168, dt = 0.0024761267832518288 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.73 us    (1.7%)
   patch tree reduce : 1263.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 371.54 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (71.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8566964285714285
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,5.903329389916213e-19,5.370644689735442e-19)
    sum a = (4.930496643022475e-18,-3.365579049620006e-17,-6.149704486382114e-17)
    sum e = 1.1963609041565522
    sum de = 3.621235256101585e-17
Info: cfl dt = 0.0024834787082118177 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6881e+04    |       13440 |   2.010e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.358683636610074 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.37733253163756864, dt = 0.0024834787082118177 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.12 us    (2.0%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.4%)
   LB compute        : 340.18 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (72.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8654017857142857
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-9.67591997910934e-19,2.662300483264687e-19)
    sum a = (8.231869030818865e-18,1.698122458976837e-17,-1.008619575662032e-17)
    sum e = 1.1963608281719866
    sum de = -3.5128150388530344e-17
Info: cfl dt = 0.002522732060652307 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6193e+04    |       13440 |   2.030e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.032547710265206 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.37981601034578044, dt = 0.00018398965421961844 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.60 us    (1.7%)
   patch tree reduce : 1914.00 ns (0.5%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1203.00 ns (0.3%)
   LB compute        : 375.51 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (69.4%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.867857142857143
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,7.368493069823129e-19,3.163166350335574e-19)
    sum a = (-1.139907824465546e-17,-7.934793431336462e-18,-4.173672595631416e-17)
    sum e = 1.1963595067528716
    sum de = -2.6020852139652106e-18
Info: cfl dt = 0.0025222322405353665 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.8086e+04    |       13440 |   1.974e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 3.3554967568248917 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 188                                                     [SPH][rank=0]
Info: time since start : 721.250678269 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1903.95 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1889.41 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1822.94 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.38000000000000006, dt = 0.0025222322405353665 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.82 us    (1.6%)
   patch tree reduce : 1223.00 ns (0.2%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1253.00 ns (0.2%)
   LB compute        : 558.54 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.14 us    (73.8%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8782738095238094
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,2.3748079676365544e-19,2.2074783393998675e-19)
    sum a = (1.3100075628788578e-17,-4.7934585439063984e-17,-3.8983985119174787e-17)
    sum e = 1.1963608159740011
    sum de = 3.946495907847236e-17
Info: cfl dt = 0.0025196695333797718 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6211e+04    |       13440 |   2.030e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.73172133984018 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.38252223224053544, dt = 0.0025196695333797718 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.99 us    (1.9%)
   patch tree reduce : 1383.00 ns (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1323.00 ns (0.4%)
   LB compute        : 341.05 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (73.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8784226190476192
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-4.863415056042578e-19,1.3274068495017687e-19)
    sum a = (4.018187060095868e-17,-2.0546131783557215e-17,3.257769356259457e-17)
    sum e = 1.1963607916615082
    sum de = 1.0408340855860843e-17
Info: cfl dt = 0.0025157174532377245 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6185e+04    |       13440 |   2.031e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.6690158377166 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.38504190177391523, dt = 0.0025157174532377245 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.81 us    (1.8%)
   patch tree reduce : 1383.00 ns (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1493.00 ns (0.4%)
   LB compute        : 362.83 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (72.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8785714285714286
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,-2.0813260245995021e-19,3.011558969047301e-19)
    sum a = (-3.072336683679311e-17,-1.0349730562612775e-17,-5.952772113176843e-17)
    sum e = 1.1963608031363964
    sum de = -2.5153490401663703e-17
Info: cfl dt = 0.00251765374761797 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6226e+04    |       13440 |   2.029e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.626820241849714 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.3875576192271529, dt = 0.00251765374761797 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.74 us    (1.9%)
   patch tree reduce : 1222.00 ns (0.3%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 344.72 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (70.7%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8732142857142857
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-8.654722605888577e-19,3.080811723462932e-20)
    sum a = (-1.2970703996755918e-17,8.222285946964594e-18,3.354079348994881e-20)
    sum e = 1.196360847688281
    sum de = -2.5804011705155006e-17
Info: cfl dt = 0.0025243275537024192 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6123e+04    |       13440 |   2.033e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.59122018803363 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3900752729747709, dt = 0.0025243275537024192 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.90 us    (1.9%)
   patch tree reduce : 1382.00 ns (0.4%)
   gen split merge   : 921.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 334.54 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (70.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8629464285714286
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,1.650087251157303e-19,1.0563852592481646e-19)
    sum a = (1.541918192152218e-17,5.620478680529993e-17,-1.5761777169312374e-17)
    sum e = 1.196360910133507
    sum de = -2.6020852139652106e-18
Info: cfl dt = 0.002532930581207835 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6450e+04    |       13440 |   2.023e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.93082776201054 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.3925996005284733, dt = 0.002532930581207835 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.19 us    (1.7%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1353.00 ns (0.3%)
   LB compute        : 389.53 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (71.8%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8631696428571427
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-3.4828520382866487e-19,4.6418062419125584e-20)
    sum a = (3.909898212542604e-18,1.2525090597532313e-17,3.516273043228419e-17)
    sum e = 1.1963609767239833
    sum de = 4.401860820291148e-17
Info: cfl dt = 0.0025491137219419147 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6064e+04    |       13440 |   2.034e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.82179408894992 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.39513253110968116, dt = 0.0025491137219419147 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.93 us    (1.8%)
   patch tree reduce : 1353.00 ns (0.4%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1453.00 ns (0.4%)
   LB compute        : 362.62 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (70.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8633184523809523
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-7.687430079348089e-19,1.8776854926962415e-19)
    sum a = (-2.788198247400173e-17,-6.157131376369175e-17,6.090049789389277e-18)
    sum e = 1.19636104770781
    sum de = 2.0816681711721685e-17
Info: cfl dt = 0.0025524262198320068 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6347e+04    |       13440 |   2.026e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.30128246359273 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.39768164483162305, dt = 0.0023183551683770287 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.21 us    (1.8%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.3%)
   LB compute        : 370.49 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.24 us    (76.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.862202380952381
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-2.7281841847628007e-19,1.6890185293152794e-19)
    sum a = (-2.032572085490898e-17,7.637717831854057e-18,2.193567894242652e-17)
    sum e = 1.1963608465955866
    sum de = -3.2959746043559335e-17
Info: cfl dt = 0.002546956681942899 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6776e+04    |       13440 |   2.013e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 41.4672812651316 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 196                                                     [SPH][rank=0]
Info: time since start : 729.678674677 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1858.26 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1860.79 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1788.27 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.4000000000000001, dt = 0.002546956681942899 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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    (1.6%)
   patch tree reduce : 1152.00 ns (0.2%)
   gen split merge   : 831.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.2%)
   LB compute        : 566.19 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.40 us    (74.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8659970238095236
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-1.2655660115046757e-18,2.4137392457945305e-19)
    sum a = (-2.3660634036195318e-17,-2.763521806475425e-17,5.031119023492322e-18)
    sum e = 1.196361127759489
    sum de = 1.1492543028346347e-17
Info: cfl dt = 0.002543324122439297 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.3176e+04    |       13440 |   2.127e-01   |    0 % |   1 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.10029704462808 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.40254695668194296, dt = 0.002543324122439297 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.8%)
   patch tree reduce : 1102.00 ns (0.3%)
   gen split merge   : 1011.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 355.47 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (69.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8710565476190477
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,3.4439207601286724e-20,2.3748079676365544e-19)
    sum a = (8.09770585685907e-18,-2.3631884784632506e-17,-3.7613604128014024e-17)
    sum e = 1.1963611783830013
    sum de = 2.3635607360183997e-17
Info: cfl dt = 0.0025570640184367608 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6634e+04    |       13440 |   2.017e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.39423784390843 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.40509028080438225, dt = 0.0025570640184367608 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.10 us    (2.0%)
   patch tree reduce : 1152.00 ns (0.3%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 339.21 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (69.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.872098214285714
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-8.349261808033686e-19,9.553136717226491e-20)
    sum a = (1.72687171053965e-17,-2.050779944814013e-18,-1.4123069830232016e-17)
    sum e = 1.1963612525548593
    sum de = 2.3635607360183997e-17
Info: cfl dt = 0.0025575562129679773 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6779e+04    |       13440 |   2.013e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.738666441866236 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.407647344822819, dt = 0.0025575562129679773 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.8%)
   patch tree reduce : 1062.00 ns (0.3%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 338.01 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (71.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8600446428571433
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-8.720606307386691e-19,8.370224803964904e-20)
    sum a = (1.5716257521004585e-17,-7.934793431336462e-18,1.4187755646248347e-17)
    sum e = 1.1963613206997679
    sum de = -4.0332320816460765e-17
Info: cfl dt = 0.0025772938013571725 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.7175e+04    |       13440 |   2.001e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.01872236933582 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.410204901035787, dt = 0.0025772938013571725 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.48 us    (1.6%)
   patch tree reduce : 1092.00 ns (0.3%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.3%)
   LB compute        : 380.28 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (70.7%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.858407738095238
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-7.78625563159526e-21,1.5512616989101324e-19)
    sum a = (8.183953611547509e-18,2.278857340545665e-17,3.571255986842299e-17)
    sum e = 1.1963614177074233
    sum de = -2.0057740190981832e-17
Info: cfl dt = 0.0026061872759313856 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.7528e+04    |       13440 |   1.990e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.617586037032105 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4127821948371442, dt = 0.0026061872759313856 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.71 us    (1.8%)
   patch tree reduce : 1413.00 ns (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 353.22 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.31 us    (72.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.863318452380952
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-1.7159709526554168e-19,2.767115462920777e-19)
    sum a = (-8.088122773004798e-17,1.2036353320964487e-17,-3.966019147364179e-17)
    sum e = 1.1963615296562478
    sum de = 7.37257477290143e-18
Info: cfl dt = 0.0026435101909230646 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.7700e+04    |       13440 |   1.985e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.26034394577949 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.41538838211307555, dt = 0.0026435101909230646 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.40 us    (1.9%)
   patch tree reduce : 1222.00 ns (0.3%)
   gen split merge   : 891.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.3%)
   LB compute        : 367.07 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.20 us    (72.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.863764880952381
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-3.6146194412828763e-19,7.381969281493198e-20)
    sum a = (1.3857139253275994e-17,-3.1815838396180016e-17,-1.0638420963722693e-17)
    sum e = 1.1963616523342293
    sum de = -1.4094628242311558e-17
Info: cfl dt = 0.0026421217933517544 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.7388e+04    |       13440 |   1.994e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.71663517462296 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4180318923039986, dt = 0.0019681076960014754 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.56 us    (1.8%)
   patch tree reduce : 1122.00 ns (0.3%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1143.00 ns (0.3%)
   LB compute        : 341.56 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (71.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.863616071428571
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-4.231530464401578e-19,9.77774024506097e-20)
    sum a = (2.836592820864242e-17,1.0104403615943435e-16,3.759443796030548e-17)
    sum e = 1.1963608864863249
    sum de = 3.3176586478056436e-17
Info: cfl dt = 0.002643638593810683 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.8221e+04    |       13440 |   1.970e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 35.964092074942386 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 204                                                     [SPH][rank=0]
Info: time since start : 738.191000956 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1868.36 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1859.57 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1796.25 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.4200000000000001, dt = 0.002643638593810683 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.88 us    (1.5%)
   patch tree reduce : 1232.00 ns (0.2%)
   gen split merge   : 802.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1323.00 ns (0.2%)
   LB compute        : 652.59 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.48 us    (72.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8623511904761898
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-3.1189943231947936e-19,2.3733106107843243e-19)
    sum a = (2.1274446156481818e-17,-3.971229949209939e-17,1.2607744695775401e-17)
    sum e = 1.1963617366915016
    sum de = -1.951563910473908e-18
Info: cfl dt = 0.0026410162946772157 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5205e+04    |       13440 |   2.061e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.172665604829916 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.42264363859381077, dt = 0.0026410162946772157 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.60 us    (1.8%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 349.97 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.76 us    (72.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8750744047619048
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,-3.9380485213645257e-19,2.4347022417257487e-19)
    sum a = (1.5543762011627707e-17,1.2189682662632825e-17,3.557480303801785e-17)
    sum e = 1.1963617952279302
    sum de = 2.5370330836160804e-17
Info: cfl dt = 0.002630914703747492 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.7888e+04    |       13440 |   1.980e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.025294281100315 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.425284654888488, dt = 0.002630914703747492 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.49 us    (1.7%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 355.13 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (68.8%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8776785714285715
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-1.7848493678579904e-19,3.620608868691796e-19)
    sum a = (4.849040430261171e-17,1.0848050923034873e-17,-1.7599333498368854e-17)
    sum e = 1.1963618217203373
    sum de = 1.702197410802242e-17
Info: cfl dt = 0.002621252590366981 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.7725e+04    |       13440 |   1.984e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.726346237109766 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4279155695922355, dt = 0.002621252590366981 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.64 us    (1.8%)
   patch tree reduce : 1192.00 ns (0.3%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.4%)
   LB compute        : 342.07 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (67.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.860565476190476
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,-4.354313726284426e-19,2.509570084337241e-19)
    sum a = (-1.3866722337130265e-17,-3.714403301915474e-17,1.6315200261896527e-17)
    sum e = 1.1963618385066452
    sum de = -1.1926223897340549e-18
Info: cfl dt = 0.002620616988116273 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.7822e+04    |       13440 |   1.982e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.61900768919242 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4305368221826025, dt = 0.002620616988116273 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.16 us    (1.9%)
   patch tree reduce : 1112.00 ns (0.3%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 352.78 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (70.4%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.854315476190476
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-5.240748982804501e-19,3.3518333137165362e-19)
    sum a = (-4.7017005160017527e-17,-4.768542525885294e-17,3.378755789919629e-17)
    sum e = 1.1963618523190425
    sum de = -1.951563910473908e-18
Info: cfl dt = 0.002628810942882065 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.7727e+04    |       13440 |   1.984e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.541178921228166 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.43315743917071875, dt = 0.002628810942882065 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.84 us    (1.9%)
   patch tree reduce : 1603.00 ns (0.5%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1452.00 ns (0.4%)
   LB compute        : 334.33 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (72.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8531994047619045
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-6.217025650458368e-19,4.508541482064101e-19)
    sum a = (2.3318038788405127e-17,3.292747612327546e-17,-8.866269181971611e-17)
    sum e = 1.1963618536376146
    sum de = 8.673617379884035e-18
Info: cfl dt = 0.0026378750037211692 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5863e+04    |       13440 |   2.041e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.37735146428937 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.43578625011360084, dt = 0.0026378750037211692 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.70 us    (1.9%)
   patch tree reduce : 1322.00 ns (0.4%)
   gen split merge   : 1021.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1041.00 ns (0.3%)
   LB compute        : 329.93 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.18 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (69.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8528273809523812
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.850733069356104e-19,4.7615947900909474e-20)
    sum a = (1.5467097340793538e-17,-3.802567673374768e-17,3.8512018239351936e-17)
    sum e = 1.1963618210431906
    sum de = -7.047314121155779e-18
Info: cfl dt = 0.0026130136565134417 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6788e+04    |       13440 |   2.012e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.190328318017905 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.438424125117322, dt = 0.00157587488267813 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.93 us    (2.0%)
   patch tree reduce : 1253.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1053.00 ns (0.3%)
   LB compute        : 334.61 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.52 us    (70.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.853199404761905
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,2.060363028668284e-19,2.795565243113144e-19)
    sum a = (-3.1106690190963953e-17,-3.028254497949664e-18,-6.41467675495271e-17)
    sum e = 1.1963605835314572
    sum de = -3.3610267347050637e-18
Info: cfl dt = 0.002618780848806213 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.7695e+04    |       13440 |   1.985e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 28.57481092033522 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 212                                                     [SPH][rank=0]
Info: time since start : 746.5125272810001 (s)                                        [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1874.13 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1867.08 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1797.07 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.4400000000000001, dt = 0.002618780848806213 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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    (1.7%)
   patch tree reduce : 1202.00 ns (0.2%)
   gen split merge   : 592.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1001.00 ns (0.2%)
   LB compute        : 544.00 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.38 us    (70.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8534226190476193
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-5.6061040547485865e-19,3.5038150342178666e-20)
    sum a = (-1.3004244790245867e-17,-9.966407208441933e-19,-2.271190873462248e-17)
    sum e = 1.1963616438081623
    sum de = -9.75781955236954e-18
Info: cfl dt = 0.0026145385497143847 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.7051e+04    |       13440 |   2.004e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.033760266808194 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.44261878084880635, dt = 0.0026145385497143847 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.05 us    (2.0%)
   patch tree reduce : 1233.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1073.00 ns (0.3%)
   LB compute        : 335.04 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (72.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8720982142857143
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-2.0124476093969286e-19,2.20860135703904e-20)
    sum a = (2.183026502002954e-17,-2.1197781485647648e-17,-7.459472472164616e-17)
    sum e = 1.1963614746744184
    sum de = -5.9631119486702744e-18
Info: cfl dt = 0.0026092781372656164 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.7251e+04    |       13440 |   1.998e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.09712199842541 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.44523331939852073, dt = 0.0026092781372656164 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.68 us    (1.8%)
   patch tree reduce : 1212.00 ns (0.3%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1223.00 ns (0.3%)
   LB compute        : 399.16 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (74.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.877157738095238
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-6.540454730540018e-19,-2.383792108749933e-19)
    sum a = (-9.698080860522342e-18,-1.962615573354719e-17,3.6712794245712543e-17)
    sum e = 1.1963612741180587
    sum de = -9.324138683375338e-18
Info: cfl dt = 0.0026152051309847406 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6872e+04    |       13440 |   2.010e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.73798799271738 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.44784259753578637, dt = 0.0026152051309847406 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.65 us    (1.9%)
   patch tree reduce : 1703.00 ns (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 335.04 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 2.98 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (73.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8762648809523812
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-4.8394573464069e-19,1.4973568522298576e-21)
    sum a = (-6.1906721698591235e-18,6.382333846944545e-18,6.455404861333363e-17)
    sum e = 1.1963610652203431
    sum de = 3.5887091909270197e-17
Info: cfl dt = 0.0026182957833102787 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4908e+04    |       13440 |   2.071e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.46795756276781 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4504578026667711, dt = 0.0026182957833102787 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.88 us    (1.9%)
   patch tree reduce : 1522.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1493.00 ns (0.4%)
   LB compute        : 338.51 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (70.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8651785714285718
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-7.7143825026882265e-19,2.060363028668284e-19)
    sum a = (2.472435634401941e-17,1.715372009914525e-18,-5.521653128282823e-17)
    sum e = 1.1963608496451443
    sum de = 1.3227266504323154e-17
Info: cfl dt = 0.0025961739576276562 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5162e+04    |       13440 |   2.063e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.699865219424375 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4530760984500814, dt = 0.0025961739576276562 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.50 us    (2.0%)
   patch tree reduce : 1412.00 ns (0.4%)
   gen split merge   : 702.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 361.52 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 20.98 us   (92.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.864136904761905
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,-4.0847894928830515e-19,-8.549907626232487e-20)
    sum a = (1.5764172940275942e-17,4.0299263378173494e-17,7.738340212323904e-19)
    sum e = 1.1963606358238392
    sum de = 1.2685165418080402e-17
Info: cfl dt = 0.0025923738827886753 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4871e+04    |       13440 |   2.072e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.111607389600344 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4556722724077091, dt = 0.0025923738827886753 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.98 us    (1.9%)
   patch tree reduce : 1442.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 347.28 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.84 us    (72.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8645089285714285
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,3.988958654340341e-19,-1.1754251290004382e-20)
    sum a = (-4.40534364780842e-17,2.8298846621662525e-17,-3.9501471647305426e-17)
    sum e = 1.1963604758944066
    sum de = 1.723881454251952e-17
Info: cfl dt = 0.002588547353303866 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5444e+04    |       13440 |   2.054e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.443254033371346 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.45826464629049773, dt = 0.0017353537095023963 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.51 us    (1.7%)
   patch tree reduce : 1232.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 366.59 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 us    (72.7%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.863913690476191
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,4.0967683477008905e-19,-1.3959109254912847e-19)
    sum a = (-8.051707054358568e-17,-4.9515794275018716e-17,1.7503502659826143e-17)
    sum e = 1.1963600404155303
    sum de = -4.85722573273506e-17
Info: cfl dt = 0.0025780204123877076 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5938e+04    |       13440 |   2.038e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 30.64970099749852 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 220                                                     [SPH][rank=0]
Info: time since start : 754.8703568550001 (s)                                        [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1914.81 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1899.28 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1791.99 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.46000000000000013, dt = 0.0025780204123877076 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.94 us    (1.5%)
   patch tree reduce : 1162.00 ns (0.2%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.2%)
   LB compute        : 649.80 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.58 us    (75.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8638392857142858
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-8.373219517669363e-19,-4.499557340950722e-20)
    sum a = (5.011952855783779e-17,-1.3301320389728271e-17,-9.59266693812536e-18)
    sum e = 1.1963603228150723
    sum de = -1.5070410197548512e-17
Info: cfl dt = 0.0025832222007187667 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4402e+04    |       13440 |   2.087e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.47225006180844 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4625780204123878, dt = 0.0025832222007187667 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.28 us    (1.6%)
   patch tree reduce : 1343.00 ns (0.3%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 373.54 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (73.8%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8704613095238094
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-2.2999401250250614e-19,-1.0649950611484863e-19)
    sum a = (1.1595531463668018e-18,2.878758389823035e-17,2.0771334254132584e-17)
    sum e = 1.1963602951461196
    sum de = -2.233456475320139e-17
Info: cfl dt = 0.002589778059885715 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5914e+04    |       13440 |   2.039e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.60842395085119 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4651612426131066, dt = 0.002589778059885715 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.81 us    (2.0%)
   patch tree reduce : 1323.00 ns (0.4%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1353.00 ns (0.4%)
   LB compute        : 326.46 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (70.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8716517857142854
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,-1.629124255226085e-19,-1.3401343827457226e-20)
    sum a = (-4.3986354891104295e-17,1.161469763137656e-17,1.5213145618655354e-17)
    sum e = 1.1963603168406052
    sum de = 1.4094628242311558e-17
Info: cfl dt = 0.00257620867319019 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5583e+04    |       13440 |   2.049e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.49420487954462 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4677510206729923, dt = 0.00257620867319019 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.63 us    (1.9%)
   patch tree reduce : 1193.00 ns (0.4%)
   gen split merge   : 751.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.3%)
   LB compute        : 321.12 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (71.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8712053571428575
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,2.6353480599245493e-19,1.9390771236376655e-20)
    sum a = (3.6545090278262796e-17,8.310450318423888e-17,3.225905602444005e-18)
    sum e = 1.1963603649149195
    sum de = -1.9081958235744878e-17
Info: cfl dt = 0.0025810144332509724 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4732e+04    |       13440 |   2.076e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.668693176922304 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4703272293461825, dt = 0.0025810144332509724 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.34 us    (1.8%)
   patch tree reduce : 1383.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 333.33 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.95 us    (72.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8734374999999999
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-1.4973568522298576e-19,1.3027004614399762e-20)
    sum a = (6.835613713251568e-17,5.0828676763053855e-17,-1.7074659657347513e-17)
    sum e = 1.1963604439855826
    sum de = 3.491130995403324e-17
Info: cfl dt = 0.0025819891601565766 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5006e+04    |       13440 |   2.068e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.94122841110135 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.47290824377943347, dt = 0.0025819891601565766 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.35 us    (1.7%)
   patch tree reduce : 1243.00 ns (0.3%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 346.79 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 2.98 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (72.8%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8667410714285717
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-5.725892602926975e-19,-5.162137748062434e-20)
    sum a = (-1.8404312542127626e-17,5.3665269583918095e-18,-6.36783943261496e-17)
    sum e = 1.1963605392308874
    sum de = -2.42861286636753e-17
Info: cfl dt = 0.002558892125537191 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5120e+04    |       13440 |   2.064e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.03759220324875 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.47549023293959003, dt = 0.002558892125537191 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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 : 1343.00 ns (0.4%)
   gen split merge   : 731.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 318.06 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.71 us    (70.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8651041666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-3.2043436637718954e-19,-2.81690257825742e-19)
    sum a = (-1.161469763137656e-17,-6.501164086737507e-17,-9.507617068918703e-18)
    sum e = 1.1963606331881982
    sum de = -1.8865117801247777e-17
Info: cfl dt = 0.002561295027283735 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5426e+04    |       13440 |   2.054e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.844218489001996 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4780491250651272, dt = 0.0019508749348729482 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.28 us    (1.8%)
   patch tree reduce : 1443.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1243.00 ns (0.4%)
   LB compute        : 320.57 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (70.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8642113095238098
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,-5.800760445538468e-19,-2.199617215925661e-19)
    sum a = (1.978427661714266e-17,2.1006119808562225e-17,1.002150994060399e-17)
    sum e = 1.1963604061454243
    sum de = -1.691355389077387e-17
Info: cfl dt = 0.002560102017302925 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6997e+04    |       13440 |   2.006e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 35.009769703550354 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 228                                                     [SPH][rank=0]
Info: time since start : 763.344670162 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1887.85 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1886.31 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1822.20 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.48000000000000015, dt = 0.002560102017302925 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.56 us   (1.7%)
   patch tree reduce : 1262.00 ns (0.2%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.2%)
   LB compute        : 671.09 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.52 us    (74.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8681547619047618
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.2278326188284832e-19,-1.739554323078037e-19)
    sum a = (-2.104445214397931e-17,-3.081919767533582e-17,-1.915418885372434e-17)
    sum e = 1.1963608065145788
    sum de = -1.214306433183765e-17
Info: cfl dt = 0.0025590176596578364 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.3694e+04    |       13440 |   2.110e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.67771817532556 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4825601020173031, dt = 0.0025590176596578364 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.85 us    (1.6%)
   patch tree reduce : 1273.00 ns (0.3%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.3%)
   LB compute        : 400.67 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (71.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.877157738095238
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,5.659260223002747e-19,-2.6967396908659737e-19)
    sum a = (1.4880133454719433e-17,-7.05314971674352e-18,-2.3891825934179607e-17)
    sum e = 1.1963609351070235
    sum de = -8.456776945386935e-18
Info: cfl dt = 0.0025561515235863986 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5039e+04    |       13440 |   2.066e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.58084210215895 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4851191196769609, dt = 0.0025561515235863986 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.22 us    (1.7%)
   patch tree reduce : 1102.00 ns (0.3%)
   gen split merge   : 1232.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 354.37 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.02 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (71.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8779761904761905
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-3.982969226931421e-20,-3.275842453465871e-19)
    sum a = (-2.3157522133846087e-17,-1.2343012004301162e-17,-6.400122446349035e-17)
    sum e = 1.1963610407832532
    sum de = 1.0083080204115191e-16
Info: cfl dt = 0.002555300918032148 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5297e+04    |       13440 |   2.058e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.70799936144185 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4876752712005473, dt = 0.002555300918032148 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.83 us    (2.0%)
   patch tree reduce : 1332.00 ns (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 327.99 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (69.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8782738095238096
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-3.743392130574644e-19,-5.50091473587944e-19)
    sum a = (2.7165048013154078e-17,-1.3339652725145356e-17,-2.876542301681735e-17)
    sum e = 1.1963611324121672
    sum de = 2.211772431870429e-17
Info: cfl dt = 0.002575248199966517 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5649e+04    |       13440 |   2.047e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.93409104310645 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.49023057211857946, dt = 0.002575248199966517 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.75 us    (1.8%)
   patch tree reduce : 1473.00 ns (0.4%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1383.00 ns (0.4%)
   LB compute        : 349.08 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.58 us    (72.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8789434523809525
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-2.8449780192367296e-19,-5.72664128135309e-19)
    sum a = (-1.7399286622910945e-17,5.105867077555636e-17,2.423502012471069e-17)
    sum e = 1.1963612199898053
    sum de = -2.0383000842727483e-17
Info: cfl dt = 0.0025860236635263587 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6339e+04    |       13440 |   2.026e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.76032017823511 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.492805820318546, dt = 0.0025860236635263587 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.98 us    (1.9%)
   patch tree reduce : 1142.00 ns (0.3%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 338.91 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (70.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8784970238095235
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-1.9166167708542177e-19,-4.404475180834126e-19)
    sum a = (8.083331231077663e-18,-3.2812479117024205e-17,-4.860719813708564e-17)
    sum e = 1.196361273549442
    sum de = -1.5178830414797062e-17
Info: cfl dt = 0.0025956187340672706 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6531e+04    |       13440 |   2.020e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.084816377502094 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.4953918439820723, dt = 0.0025956187340672706 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.05 us    (1.8%)
   patch tree reduce : 1252.00 ns (0.3%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 363.30 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (71.7%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8600446428571427
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-2.20410928648235e-19,-6.663237992422866e-19)
    sum a = (2.4642900131258104e-17,-1.1729694637627812e-17,-1.8713366996427868e-17)
    sum e = 1.1963612970469022
    sum de = 2.949029909160572e-17
Info: cfl dt = 0.0025925443180015635 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6251e+04    |       13440 |   2.029e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.06136663411283 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.4979874627161396, dt = 0.002012537283860527 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.65 us    (1.9%)
   patch tree reduce : 1031.00 ns (0.3%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 338.20 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (69.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.855654761904762
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,-6.468581601632985e-19,-6.636285569082729e-19)
    sum a = (-2.5749746316426417e-17,-2.9899221625325796e-17,-7.953360656304112e-18)
    sum e = 1.1963608120269376
    sum de = -1.8648277366750676e-17
Info: cfl dt = 0.0025890845741873606 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6949e+04    |       13440 |   2.007e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 36.090617852050045 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 236                                                     [SPH][rank=0]
Info: time since start : 772.0486501510001 (s)                                        [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1905.45 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1897.77 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1827.44 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.5000000000000001, dt = 0.0025890845741873606 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.53 us   (1.7%)
   patch tree reduce : 1273.00 ns (0.2%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 592.65 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.67 us    (73.8%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8695684523809528
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-2.8030520273742932e-19,-6.859391740064978e-19)
    sum a = (1.7968282226758293e-18,4.745543124635043e-17,-2.303084574414744e-17)
    sum e = 1.1963612553117533
    sum de = -5.963111948670274e-17
Info: cfl dt = 0.002594127616300577 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5082e+04    |       13440 |   2.065e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.13500703827475 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5025890845741875, dt = 0.002594127616300577 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.67 us    (2.0%)
   patch tree reduce : 1322.00 ns (0.3%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 358.33 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (68.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8770089285714284
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-5.0311190234923215e-20,-7.667964440269101e-19)
    sum a = (-1.586000377881865e-17,1.7479544950190467e-17,2.702429646904447e-18)
    sum e = 1.196361229643355
    sum de = 9.75781955236954e-17
Info: cfl dt = 0.0026060116971044493 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6365e+04    |       13440 |   2.025e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.11388582235446 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5051832121904881, dt = 0.0026060116971044493 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.68 us    (1.9%)
   patch tree reduce : 1212.00 ns (0.3%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 339.16 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (70.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.876934523809524
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-1.3176740299622746e-19,-7.226992847287407e-19)
    sum a = (-4.2568058480672175e-17,-2.928590425865245e-17,5.340772420533456e-18)
    sum e = 1.196361209544157
    sum de = 1.214306433183765e-17
Info: cfl dt = 0.0025825991771516957 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6709e+04    |       13440 |   2.015e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.56513493150201 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5077892238875926, dt = 0.0025825991771516957 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.65 us    (1.8%)
   patch tree reduce : 1333.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 344.52 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.76 us    (68.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8773065476190476
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-7.1154397617962835e-19,-7.086989981603916e-19)
    sum a = (3.928585226058433e-17,-3.0512538991999144e-17,-4.617608955180524e-17)
    sum e = 1.1963611706132697
    sum de = -1.214306433183765e-17
Info: cfl dt = 0.002576553398050945 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6146e+04    |       13440 |   2.032e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.75776402706497 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5103718230647443, dt = 0.002576553398050945 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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 : 1272.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 333.12 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (71.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8774553571428576
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-4.528007121143089e-19,-9.002858074032019e-19)
    sum a = (-3.098690164278556e-17,-6.807822770074182e-17,-3.502617148736083e-18)
    sum e = 1.1963611594354109
    sum de = 2.3418766925686896e-17
Info: cfl dt = 0.002575852910439618 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6159e+04    |       13440 |   2.031e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.659225597026534 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5129483764627952, dt = 0.002575852910439618 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.60 us    (1.7%)
   patch tree reduce : 1292.00 ns (0.3%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 366.27 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (73.4%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8775297619047624
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-8.337282953215847e-19,-8.414396831105685e-19)
    sum a = (-1.512929363493048e-17,3.649238331706431e-17,-5.809864375200026e-17)
    sum e = 1.1963611634110682
    sum de = -2.0599841277224584e-17
Info: cfl dt = 0.0025916555216239923 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6529e+04    |       13440 |   2.020e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.90224123344084 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5155242293732348, dt = 0.0025916555216239923 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.70 us    (1.9%)
   patch tree reduce : 1273.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 341.17 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (70.4%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8735119047619047
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,-4.911330475313933e-19,-1.06267415802753e-18)
    sum a = (4.795375160677253e-17,-3.7719018050411005e-17,-1.0697117352330102e-17)
    sum e = 1.19636118564662
    sum de = -2.200930410145574e-17
Info: cfl dt = 0.002596633526303394 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6476e+04    |       13440 |   2.022e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.14689605366653 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5181158848948588, dt = 0.001884115105141304 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.91 us    (1.8%)
   patch tree reduce : 1303.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.3%)
   LB compute        : 361.40 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (71.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8635416666666664
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-5.941511989648075e-19,-1.0264755561248732e-18)
    sum a = (2.143256704007729e-17,2.9132574916984108e-18,-3.4108591208314373e-17)
    sum e = 1.1963607006839607
    sum de = 7.134050294954619e-17
Info: cfl dt = 0.0026092747237978276 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.7106e+04    |       13440 |   2.003e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 33.8666340515616 (tsim/hr)                              [sph::Model][rank=0]
Info: iteration since start : 244                                                     [SPH][rank=0]
Info: time since start : 780.5118528500001 (s)                                        [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1899.41 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1898.04 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1829.39 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.5200000000000001, dt = 0.0026092747237978276 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.37 us   (1.7%)
   patch tree reduce : 1272.00 ns (0.2%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.2%)
   LB compute        : 625.96 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 us    (73.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8671874999999998
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-2.9707559948240377e-19,-1.1418843355104894e-18)
    sum a = (2.234535577719661e-17,1.5946251533507093e-17,1.831327324551205e-17)
    sum e = 1.1963612033765685
    sum de = -9.75781955236954e-19
Info: cfl dt = 0.0026070764352295922 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4242e+04    |       13440 |   2.092e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.89978497020781 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5226092747237979, dt = 0.0026070764352295922 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.85 us    (1.9%)
   patch tree reduce : 1613.00 ns (0.5%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1213.00 ns (0.3%)
   LB compute        : 333.61 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (71.7%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8767857142857143
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-5.318611539120454e-19,-1.0205609965585652e-18)
    sum a = (-1.889544558965902e-17,-7.4978048075817e-17,-1.9743548510762012e-17)
    sum e = 1.196361208732868
    sum de = 6.5052130349130266e-18
Info: cfl dt = 0.0025901422623598514 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6688e+04    |       13440 |   2.015e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.56973794322908 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5252163511590275, dt = 0.0025901422623598514 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.79 us    (1.9%)
   patch tree reduce : 1562.00 ns (0.4%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 330.71 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (70.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8767113095238095
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-5.079034442763677e-19,-1.1220443572184439e-18)
    sum a = (-3.398161534724528e-17,1.5639592850170416e-17,-1.9058358015181627e-17)
    sum e = 1.1963611986020595
    sum de = 4.5102810375396984e-17
Info: cfl dt = 0.0025704752006895973 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6764e+04    |       13440 |   2.013e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.32024377702513 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5278064934213874, dt = 0.0025704752006895973 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.91 us    (2.0%)
   patch tree reduce : 1653.00 ns (0.5%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 329.98 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (70.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8700892857142855
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-2.9707559948240377e-19,-1.161724313802535e-18)
    sum a = (7.53709545138421e-18,3.89456527837577e-17,4.830832570938056e-17)
    sum e = 1.196361193712589
    sum de = -3.447762908503904e-17
Info: cfl dt = 0.0025665559270274317 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6057e+04    |       13440 |   2.035e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.481596464372856 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5303769686220771, dt = 0.0025665559270274317 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.71 us    (2.0%)
   patch tree reduce : 1694.00 ns (0.4%)
   gen split merge   : 871.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.3%)
   LB compute        : 360.85 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (73.4%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.871577380952381
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-2.3478555442964167e-19,-9.617523061872375e-19)
    sum a = (1.84953518387432e-17,1.6406239558512103e-17,1.2803000029306174e-17)
    sum e = 1.196361214522628
    sum de = 4.185020385794047e-17
Info: cfl dt = 0.002613838126534472 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6299e+04    |       13440 |   2.027e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.57860304265079 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5329435245491045, dt = 0.002613838126534472 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.53 us    (1.9%)
   patch tree reduce : 1322.00 ns (0.4%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 320.25 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (69.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8776041666666665
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,-2.922840575552682e-19,-9.728327468937384e-19)
    sum a = (1.3253404970456915e-17,-1.2113017991798656e-17,4.462842150934046e-17)
    sum e = 1.1963612946049407
    sum de = -1.6479873021779667e-17
Info: cfl dt = 0.002609629966421661 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6708e+04    |       13440 |   2.015e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.704928402357055 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.535557362675639, dt = 0.002609629966421661 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.79 us    (1.8%)
   patch tree reduce : 1813.00 ns (0.5%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 351.80 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (64.4%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8744791666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-3.25824851045217e-19,-8.096957178432955e-19)
    sum a = (-1.6732064409557322e-17,1.441295811682372e-17,-1.7867659846288444e-17)
    sum e = 1.1963613532118207
    sum de = -2.1250362580715887e-17
Info: cfl dt = 0.0025894215171759936 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6534e+04    |       13440 |   2.020e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.50797893063074 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5381669926420607, dt = 0.0018330073579394535 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.8%)
   patch tree reduce : 1242.00 ns (0.3%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 350.39 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (71.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8642857142857143
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-1.6770396744974405e-19,-9.251419311502175e-19)
    sum a = (-1.2783833861597633e-17,7.66646708341687e-18,-1.9860941287976832e-18)
    sum e = 1.1963608319738666
    sum de = 4.228388472693467e-18
Info: cfl dt = 0.0025947883802043296 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6861e+04    |       13440 |   2.010e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 32.82790930896151 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 252                                                     [SPH][rank=0]
Info: time since start : 788.979356724 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1863.45 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1858.06 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1788.21 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.5400000000000001, dt = 0.0025947883802043296 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.04 us   (1.7%)
   patch tree reduce : 1152.00 ns (0.2%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 564.12 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.83 us    (71.8%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-8.62477546884398e-20,-9.108421732114224e-19)
    sum a = (3.6894872838943694e-17,-4.937204801720465e-17,2.223754608383606e-17)
    sum e = 1.19636144187556
    sum de = -5.106592232406726e-17
Info: cfl dt = 0.0025814591957241356 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6417e+04    |       13440 |   2.024e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.162135227608466 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5425947883802045, dt = 0.0025814591957241356 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.77 us    (1.7%)
   patch tree reduce : 1222.00 ns (0.3%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 367.80 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (69.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8718005952380954
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-4.1686414766079237e-19,-8.319689010202147e-19)
    sum a = (-2.0124476093969287e-17,3.856232942958686e-17,6.706361869767086e-17)
    sum e = 1.1963615090032418
    sum de = -1.3660947373317356e-17
Info: cfl dt = 0.0025806925530441195 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4701e+04    |       13440 |   2.077e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.73819115111869 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5451762475759286, dt = 0.0025806925530441195 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.01 us    (2.0%)
   patch tree reduce : 1422.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 370.19 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (72.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8777529761904765
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-1.4374625781406633e-19,-5.959105932661776e-19)
    sum a = (-5.790099264750592e-17,2.4226035983597312e-17,-2.0962995931218006e-19)
    sum e = 1.1963615598671071
    sum de = 8.673617379884035e-18
Info: cfl dt = 0.0025511458198521956 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6806e+04    |       13440 |   2.012e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.180308081653436 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5477569401289728, dt = 0.0025511458198521956 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.59 us    (1.9%)
   patch tree reduce : 1263.00 ns (0.4%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 333.66 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (67.7%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.877232142857143
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-2.587432640653194e-19,-6.929393172906723e-19)
    sum a = (-1.1595531463668018e-17,1.533293416683374e-17,-5.617603755373712e-17)
    sum e = 1.1963615605046367
    sum de = 0
Info: cfl dt = 0.002551504693054869 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6764e+04    |       13440 |   2.013e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.6223823475689 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.550308085948825, dt = 0.002551504693054869 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.37 us    (1.8%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 742.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 335.73 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (70.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8776041666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-5.749850312562653e-20,-9.029061818946042e-19)
    sum a = (-5.999010492773702e-18,1.2803000029306174e-17,1.0577328804151714e-17)
    sum e = 1.1963615665070593
    sum de = 5.204170427930421e-18
Info: cfl dt = 0.0025831353124167785 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6346e+04    |       13440 |   2.026e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.343226723686634 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5528595906418798, dt = 0.0025831353124167785 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.08 us    (2.0%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 340.88 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (73.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8775297619047622
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-6.803989536532473e-19,-7.924012462000406e-19)
    sum a = (-7.74313175425104e-18,3.5112419242049267e-17,4.9336111452751133e-17)
    sum e = 1.1963615860455796
    sum de = 1.848564704087785e-17
Info: cfl dt = 0.0025973501770129013 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6582e+04    |       13440 |   2.019e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.06857922220529 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5554427259542967, dt = 0.0025973501770129013 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.92 us    (1.9%)
   patch tree reduce : 1323.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 337.43 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (71.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8753720238095237
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-2.874925156281327e-20,-6.141783468633818e-19)
    sum a = (3.4460769539958833e-17,3.902231745459187e-17,3.876836573245369e-17)
    sum e = 1.1963615776386671
    sum de = 1.1438332919722072e-17
Info: cfl dt = 0.0025888023049890603 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6613e+04    |       13440 |   2.018e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.343760690738236 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5580400761313096, dt = 0.001959923868690594 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.75 us    (1.8%)
   patch tree reduce : 1423.00 ns (0.4%)
   gen split merge   : 712.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 349.50 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (70.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8575892857142857
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,4.024895218793857e-19,-5.432504244693188e-19)
    sum a = (4.687086313123989e-17,-1.2879664700140343e-17,-2.6449311437788205e-18)
    sum e = 1.1963610268412381
    sum de = 4.716279450311944e-18
Info: cfl dt = 0.0025894125304972496 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.7448e+04    |       13440 |   1.993e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 35.408781695308136 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 260                                                     [SPH][rank=0]
Info: time since start : 797.2955822900001 (s)                                        [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1867.73 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1867.92 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1803.09 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.5600000000000002, dt = 0.0025894125304972496 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.62 us    (1.6%)
   patch tree reduce : 1322.00 ns (0.2%)
   gen split merge   : 501.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1203.00 ns (0.2%)
   LB compute        : 563.21 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.19 us    (75.4%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8560267857142858
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,1.3416317395979523e-19,-6.046233384500901e-19)
    sum a = (2.6171402006014342e-17,-1.5179604825165406e-17,-7.714382502688227e-18)
    sum e = 1.1963615184875396
    sum de = 8.348356728138384e-18
Info: cfl dt = 0.0025847900064946733 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5060e+04    |       13440 |   2.066e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.125119794172015 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5625894125304974, dt = 0.0025847900064946733 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.73 us    (1.7%)
   patch tree reduce : 1342.00 ns (0.3%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 366.92 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (69.8%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.857738095238095
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,-1.724955093768796e-19,-6.289647457791517e-19)
    sum a = (3.888815428063208e-17,3.3042473129526713e-17,1.4714825258233257e-17)
    sum e = 1.1963614853446047
    sum de = -1.0299920638612292e-18
Info: cfl dt = 0.0025814436929365117 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5812e+04    |       13440 |   2.042e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.56496766179574 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5651742025369921, dt = 0.0025814436929365117 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.66 us    (1.9%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1393.00 ns (0.4%)
   LB compute        : 338.09 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.95 us    (73.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8741071428571432
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,6.133173666733497e-19,-5.654019474019942e-19)
    sum a = (1.0579724575115282e-17,2.184943118773808e-17,-1.501190085771566e-17)
    sum e = 1.196361447584318
    sum de = 1.2847795743953228e-17
Info: cfl dt = 0.002576691855633417 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6265e+04    |       13440 |   2.028e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.81958303955997 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5677556462299287, dt = 0.002576691855633417 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.53 us    (1.7%)
   patch tree reduce : 1042.00 ns (0.3%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1353.00 ns (0.3%)
   LB compute        : 371.73 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.02 us    (75.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8760416666666666
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,-1.4374625781406633e-19,-6.308738757657447e-19)
    sum a = (1.8150360819989442e-17,-8.643941636552522e-18,1.2501132887896636e-17)
    sum e = 1.1963614000018745
    sum de = 1.3200161450011016e-17
Info: cfl dt = 0.0025673013039901856 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6056e+04    |       13440 |   2.035e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.590887166106405 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.570332338085562, dt = 0.0025673013039901856 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.68 us    (1.8%)
   patch tree reduce : 1072.00 ns (0.3%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 342.47 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (70.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8770833333333337
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,4.120726057336568e-19,-5.740866171449274e-19)
    sum a = (2.1969219735916472e-17,8.739772475095234e-18,-2.4408114576828463e-17)
    sum e = 1.196361337859319
    sum de = -7.823196300840718e-18
Info: cfl dt = 0.002555677593427167 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6357e+04    |       13440 |   2.025e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.63146489299009 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5728996393895522, dt = 0.002555677593427167 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.56 us    (1.7%)
   patch tree reduce : 1202.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1113.00 ns (0.3%)
   LB compute        : 365.27 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (71.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8776041666666672
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,4.6957110885928335e-19,-6.742597905591049e-19)
    sum a = (2.6864977699967215e-17,6.899820375075184e-18,-2.173443418148683e-17)
    sum e = 1.1963612640328365
    sum de = -1.5964876989849053e-17
Info: cfl dt = 0.0025459661398757774 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6208e+04    |       13440 |   2.030e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.323182661708444 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5754553169829794, dt = 0.0025459661398757774 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.66 us    (1.8%)
   patch tree reduce : 1162.00 ns (0.3%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 345.67 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.877604166666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,7.858128760502293e-19,-7.14838161254534e-19)
    sum a = (1.4448894681277235e-17,1.802578072988392e-17,-2.270232565076821e-17)
    sum e = 1.1963611860730885
    sum de = 1.1709383462843448e-17
Info: cfl dt = 0.002564430881414216 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5999e+04    |       13440 |   2.036e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.00804339215327 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5780012831228551, dt = 0.0019987168771450348 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.78 us    (1.2%)
   patch tree reduce : 1152.00 ns (0.2%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.2%)
   LB compute        : 542.34 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.24 us    (70.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8683779761904764
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,3.0665868333667484e-19,-7.620049020997745e-19)
    sum a = (3.2232702543840805e-17,-1.1346371283456969e-17,5.85718085173049e-17)
    sum e = 1.19636081078969
    sum de = 3.469446951953614e-18
Info: cfl dt = 0.002645648431567349 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6196e+04    |       13440 |   2.030e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 35.43938733581393 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 268                                                     [SPH][rank=0]
Info: time since start : 805.900930997 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1861.21 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1860.61 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1789.57 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.5800000000000002, dt = 0.002645648431567349 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.78 us    (1.6%)
   patch tree reduce : 1252.00 ns (0.2%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1002.00 ns (0.2%)
   LB compute        : 599.19 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.03 us    (74.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8645089285714287
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-1.1499700625125307e-19,-5.326098323381603e-19)
    sum a = (2.1202573027574785e-17,-8.696648597751013e-19,-1.9899273623393915e-17)
    sum e = 1.1963611330840243
    sum de = 1.5856456772600502e-17
Info: cfl dt = 0.002655709475773581 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5332e+04    |       13440 |   2.057e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.29817500713361 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5826456484315675, dt = 0.002655709475773581 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.30 us    (2.0%)
   patch tree reduce : 1323.00 ns (0.3%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 388.53 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (69.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.864732142857143
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,9.295591338642955e-19,-6.911799229893023e-19)
    sum a = (1.81311946522809e-17,5.938637064491794e-17,-3.878753190016223e-17)
    sum e = 1.1963610881912508
    sum de = -1.2766480581016815e-17
Info: cfl dt = 0.0026676950877824435 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5414e+04    |       13440 |   2.055e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.53221630810833 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5853013579073411, dt = 0.0026676950877824435 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.32 us    (1.8%)
   patch tree reduce : 1243.00 ns (0.3%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 340.62 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (70.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8756696428571429
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,3.25824851045217e-19,-8.220489118741918e-19)
    sum a = (4.885456148907401e-17,6.150423217671185e-17,-3.4487123020558083e-17)
    sum e = 1.1963610735880637
    sum de = -4.391018798566293e-18
Info: cfl dt = 0.002649919462151943 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5727e+04    |       13440 |   2.045e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.96604432650643 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5879690529951235, dt = 0.002649919462151943 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.66 us    (1.9%)
   patch tree reduce : 1342.00 ns (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 335.57 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (71.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8720982142857143
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,9.295591338642955e-19,-9.130882084897672e-19)
    sum a = (-1.556292817933625e-17,3.3042473129526713e-17,3.924632203968546e-17)
    sum e = 1.1963610704954126
    sum de = -3.577867169202165e-18
Info: cfl dt = 0.002634375639950286 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5930e+04    |       13440 |   2.039e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.7973739897745 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.5906189724572755, dt = 0.002634375639950286 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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 : 1303.00 ns (0.3%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 372.30 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (71.8%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8710565476190473
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,6.51649702090434e-19,-6.998645927322354e-19)
    sum a = (4.6861280047385626e-17,3.3253300974320676e-17,-4.539985975960928e-18)
    sum e = 1.1963610906203248
    sum de = -2.5261910618912253e-17
Info: cfl dt = 0.0026834192057790377 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5849e+04    |       13440 |   2.041e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.46538088455839 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.5932533480972257, dt = 0.0026834192057790377 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.68 us    (1.9%)
   patch tree reduce : 1593.00 ns (0.4%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.3%)
   LB compute        : 335.69 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (69.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8726190476190476
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,-8.62477546884398e-20,-7.724864000653835e-19)
    sum a = (2.4235619067451585e-17,-1.1595531463668018e-17,-9.592067995384467e-18)
    sum e = 1.1963611615160252
    sum de = 7.108300493358088e-18
Info: cfl dt = 0.002673967056798644 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5604e+04    |       13440 |   2.049e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.154266370771246 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5959367673030048, dt = 0.002673967056798644 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.86 us    (1.8%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 356.88 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (71.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.877752976190476
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,8.049790437587714e-19,-8.106689997972449e-19)
    sum a = (-2.8653420724270553e-18,-2.89025809044816e-17,-3.1640947115839564e-17)
    sum e = 1.1963612070797232
    sum de = 1.6832238727837456e-17
Info: cfl dt = 0.002667556341756181 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.2615e+04    |       13440 |   2.146e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.847233777952376 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.5986107343598035, dt = 0.0013892656401967018 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.96 us    (2.0%)
   patch tree reduce : 1683.00 ns (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1503.00 ns (0.4%)
   LB compute        : 379.83 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.82 us    (73.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8758184523809522
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-3.7374027031657247e-19,-8.759537585544666e-19)
    sum a = (-2.3373141520567186e-17,4.109226356711443e-17,-1.7180073579744494e-17)
    sum e = 1.1963606336735446
    sum de = -1.0299920638612292e-17
Info: cfl dt = 0.0026769434899607415 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6627e+04    |       13440 |   2.017e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 24.793648871492575 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 276                                                     [SPH][rank=0]
Info: time since start : 814.2603005550001 (s)                                        [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1867.71 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1900.38 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1816.84 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.6000000000000002, dt = 0.0026769434899607415 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 33.08 us   (5.1%)
   patch tree reduce : 1383.00 ns (0.2%)
   gen split merge   : 591.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1213.00 ns (0.2%)
   LB compute        : 596.64 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (73.4%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8638392857142858
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,8.145621276130425e-19,-9.096442877296385e-19)
    sum a = (3.694278825821505e-18,-5.0368688738048845e-17,7.75870426551423e-18)
    sum e = 1.1963612548590883
    sum de = 3.848917712323541e-18
Info: cfl dt = 0.002668626654022433 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.2659e+04    |       13440 |   2.145e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.92900228533626 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6026769434899609, dt = 0.002668626654022433 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.71 us    (1.7%)
   patch tree reduce : 1462.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 366.44 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (72.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8642113095238095
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,5.462357796934521e-19,-8.645738464775198e-19)
    sum a = (-1.7402880279356298e-17,6.51649702090434e-18,6.687794644799436e-18)
    sum e = 1.1963612978309293
    sum de = 2.0681156440160997e-17
Info: cfl dt = 0.002659835967080779 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5120e+04    |       13440 |   2.064e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.54856672885086 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6053455701439834, dt = 0.002659835967080779 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.11 us    (1.9%)
   patch tree reduce : 1412.00 ns (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 358.80 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (72.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.869940476190476
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,6.612327859447051e-19,-8.454076787689776e-19)
    sum a = (-6.340407855082109e-18,-1.970282040438136e-17,-3.355277234476665e-18)
    sum e = 1.1963613213293545
    sum de = -3.7947076036992655e-18
Info: cfl dt = 0.0027078182514591307 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5119e+04    |       13440 |   2.064e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.394637146372084 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6080054061110641, dt = 0.0027078182514591307 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.44 us    (1.8%)
   patch tree reduce : 1232.00 ns (0.3%)
   gen split merge   : 901.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1113.00 ns (0.3%)
   LB compute        : 326.04 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 22.82 us   (6.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (72.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8764136904761906
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.9166167708542177e-19,-8.545415555675797e-19)
    sum a = (-1.684346775936322e-17,9.50641918343692e-18,-2.3298872620696584e-18)
    sum e = 1.1963613798481272
    sum de = 3.686287386450715e-18
Info: cfl dt = 0.0026990486652442775 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5075e+04    |       13440 |   2.065e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.199244163206224 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6107132243625233, dt = 0.0026990486652442775 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.71 us    (1.8%)
   patch tree reduce : 1413.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 350.49 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (72.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.876190476190476
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,1.0541392239698198e-19,-8.564881194754786e-19)
    sum a = (-6.4302492662159e-18,9.429754512602751e-18,7.464982745380821e-17)
    sum e = 1.1963614027127092
    sum de = 1.734723475976807e-18
Info: cfl dt = 0.002689209919171456 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5523e+04    |       13440 |   2.051e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.3706870929793 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.6134122730277676, dt = 0.002689209919171456 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.62 us    (1.9%)
   patch tree reduce : 1553.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 330.72 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (70.4%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8764880952380953
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,6.133173666733497e-19,-5.588135772521829e-19)
    sum a = (4.216556895879279e-18,-1.4642952129326224e-17,-9.411786230375993e-18)
    sum e = 1.1963614265814628
    sum de = 2.314771638256552e-17
Info: cfl dt = 0.00270289115950576 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5463e+04    |       13440 |   2.053e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.15453576776082 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.616101482946939, dt = 0.00270289115950576 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.75 us    (1.8%)
   patch tree reduce : 1302.00 ns (0.3%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 354.82 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.41 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (68.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8758184523809525
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,2.779094317738616e-19,-6.977682931391136e-19)
    sum a = (2.807843569301429e-18,-1.37229760793162e-17,-4.8107080948440865e-18)
    sum e = 1.1963614686780424
    sum de = 3.230922474006803e-17
Info: cfl dt = 0.002721437687213166 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5761e+04    |       13440 |   2.044e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.61032621927114 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6188043741064447, dt = 0.0011956258935554853 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.55 us    (1.7%)
   patch tree reduce : 1333.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 359.72 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (74.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8748511904761906
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,9.199760500100246e-19,-6.961212006016608e-19)
    sum a = (-2.6832634791959047e-17,1.6866227583517116e-18,5.685643650739036e-17)
    sum e = 1.196360704380766
    sum de = -3.7947076036992655e-18
Info: cfl dt = 0.0027250952848026436 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6306e+04    |       13440 |   2.027e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 21.234943345133313 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 284                                                     [SPH][rank=0]
Info: time since start : 822.705209383 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1904.85 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1894.04 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1825.63 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.6200000000000002, dt = 0.0027250952848026436 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.48 us    (1.5%)
   patch tree reduce : 1252.00 ns (0.2%)
   gen split merge   : 591.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1011.00 ns (0.2%)
   LB compute        : 593.34 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (73.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8561011904761904
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,3.449910187537592e-19,-5.026626952935632e-19)
    sum a = (1.2170516494924283e-17,-1.433629344598955e-17,4.510158627464509e-17)
    sum e = 1.196361507142754
    sum de = -4.87890977618477e-18
Info: cfl dt = 0.002707672043218571 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.1703e+04    |       13440 |   2.178e-01   |    0 % |   2 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.039051579647804 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6227250952848029, dt = 0.002707672043218571 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.63 us    (1.9%)
   patch tree reduce : 1252.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 337.14 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (71.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8550595238095242
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,8.145621276130426e-20,-3.965000944704663e-19)
    sum a = (6.8519049558038286e-18,-3.196916773784835e-17,1.1865055697069391e-17)
    sum e = 1.1963615314067102
    sum de = -2.6020852139652106e-18
Info: cfl dt = 0.002692533282572988 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6222e+04    |       13440 |   2.030e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.02842516555613 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6254327673280214, dt = 0.002692533282572988 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.8%)
   patch tree reduce : 1152.00 ns (0.3%)
   gen split merge   : 692.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 333.96 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.88 us    (70.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8593005952380954
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,2.395770963567772e-19,-4.0773027086219024e-19)
    sum a = (-7.647300915708328e-18,1.188302397929615e-17,-5.504283788796957e-17)
    sum e = 1.196361534416829
    sum de = -2.7972416050126014e-17
Info: cfl dt = 0.0027159733486984377 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6193e+04    |       13440 |   2.030e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.73943783910382 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6281253006105945, dt = 0.0027159733486984377 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.22 us    (2.0%)
   patch tree reduce : 1162.00 ns (0.3%)
   gen split merge   : 581.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 340.09 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (70.8%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8748511904761906
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,6.276919924547563e-19,-6.488047240711973e-19)
    sum a = (3.622405696914471e-18,-7.20647905841186e-18,-3.8329939646120785e-17)
    sum e = 1.1963615581077043
    sum de = -2.721347452938616e-17
Info: cfl dt = 0.0027178827058606464 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5770e+04    |       13440 |   2.043e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.847293793489825 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6308412739592929, dt = 0.0027178827058606464 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.19 us    (1.6%)
   patch tree reduce : 1333.00 ns (0.4%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 356.56 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8774553571428572
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-2.1082784479396395e-19,-7.335551219074072e-19)
    sum a = (-3.984646266605919e-17,3.2965808458692543e-18,-5.6659983288377815e-18)
    sum e = 1.1963615599515993
    sum de = 1.3444106938820255e-17
Info: cfl dt = 0.0027037231046400318 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5757e+04    |       13440 |   2.044e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.87106872178171 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6335591566651535, dt = 0.0027037231046400318 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.8%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 359.25 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (70.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.877306547619048
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,6.372750763090274e-19,-7.091482052160606e-19)
    sum a = (-2.7599281500300737e-18,4.975537137137549e-17,-7.558657390056321e-18)
    sum e = 1.1963615464869413
    sum de = 2.168404344971009e-19
Info: cfl dt = 0.0027203207446884555 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6031e+04    |       13440 |   2.035e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.82049156428809 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6362628797697936, dt = 0.0027203207446884555 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.08 us    (1.7%)
   patch tree reduce : 1113.00 ns (0.3%)
   gen split merge   : 612.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 343.84 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8775297619047622
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,6.947735794346539e-19,-7.349027430744141e-19)
    sum a = (3.6147392298310546e-17,1.0503059904281113e-17,-2.0628785881800302e-17)
    sum e = 1.1963615545913406
    sum de = -1.6479873021779667e-17
Info: cfl dt = 0.0027177645719080237 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5781e+04    |       13440 |   2.043e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.931937356323324 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.638983200514482, dt = 0.0010167994855182494 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.36 us    (2.0%)
   patch tree reduce : 1232.00 ns (0.3%)
   gen split merge   : 1103.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 339.86 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (65.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8771577380952384
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.116429269022582e-18,-7.630530518963355e-19)
    sum a = (6.646826961322427e-17,-1.24963413459695e-17,-3.3561157543139134e-17)
    sum e = 1.1963607168896337
    sum de = -3.469446951953614e-18
Info: cfl dt = 0.002722060278647747 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.7484e+04    |       13440 |   1.992e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 18.379786457820522 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 292                                                     [SPH][rank=0]
Info: time since start : 831.3672936400001 (s)                                        [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1927.47 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1932.67 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1836.41 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.6400000000000002, dt = 0.002722060278647747 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.50 us    (1.5%)
   patch tree reduce : 1213.00 ns (0.2%)
   gen split merge   : 521.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1263.00 ns (0.2%)
   LB compute        : 596.25 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.47 us    (72.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8649553571428574
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,6.947735794346539e-19,-8.639749037366279e-19)
    sum a = (-3.081919767533582e-17,5.8265149833968216e-18,-6.237359756511651e-17)
    sum e = 1.1963615412826611
    sum de = -5.637851296924623e-18
Info: cfl dt = 0.002721822526752903 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4386e+04    |       13440 |   2.087e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.945007254186706 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.642722060278648, dt = 0.002721822526752903 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.86 us    (1.9%)
   patch tree reduce : 1542.00 ns (0.4%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1053.00 ns (0.3%)
   LB compute        : 340.42 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.93 us    (69.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8648065476190476
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,3.354079348994881e-19,-1.0616260082309691e-18)
    sum a = (1.533293416683374e-17,9.199760500100245e-18,-2.0345785436728858e-17)
    sum e = 1.1963615417366507
    sum de = -2.927345865710862e-18
Info: cfl dt = 0.002717248152676952 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4724e+04    |       13440 |   2.077e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.1875342870088 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.6454438828054009, dt = 0.002717248152676952 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.43 us    (1.7%)
   patch tree reduce : 1182.00 ns (0.3%)
   gen split merge   : 912.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 366.45 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (73.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8642857142857143
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,7.378974567788739e-19,-1.0718080348261321e-18)
    sum a = (1.634874105538648e-17,-2.0239473100220538e-17,4.376474607697428e-18)
    sum e = 1.1963615295987888
    sum de = 3.642919299551295e-17
Info: cfl dt = 0.002722346288270006 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5071e+04    |       13440 |   2.065e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.36117657343262 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6481611309580778, dt = 0.002722346288270006 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.99 us    (1.9%)
   patch tree reduce : 1243.00 ns (0.3%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.3%)
   LB compute        : 355.85 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (69.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8712797619047616
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,2.7311788984672605e-19,-1.0229942014434386e-18)
    sum a = (3.070420066908457e-17,-3.9558970150431056e-17,3.091383062839675e-17)
    sum e = 1.1963615205947253
    sum de = -1.951563910473908e-18
Info: cfl dt = 0.0027114956791611305 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5357e+04    |       13440 |   2.056e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.65795757073145 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6508834772463479, dt = 0.0027114956791611305 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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 : 1523.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 369.08 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.81 us    (72.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.870386904761905
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,7.953959599045004e-19,-9.03355388950273e-19)
    sum a = (-7.881128161752544e-17,5.78051618089632e-17,-4.499257869580276e-18)
    sum e = 1.1963614993838012
    sum de = -3.480288973678469e-17
Info: cfl dt = 0.0027254357233772674 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5320e+04    |       13440 |   2.058e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.441792013198324 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.653594972925509, dt = 0.0027254357233772674 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.13 us    (1.9%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1553.00 ns (0.4%)
   LB compute        : 357.13 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (75.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8717261904761906
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,3.449910187537592e-19,-9.741803680607453e-19)
    sum a = (-3.789151355978788e-17,3.986562883376773e-18,-3.424994169516487e-17)
    sum e = 1.1963614975874248
    sum de = 1.9081958235744878e-17
Info: cfl dt = 0.0027378991345490063 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5148e+04    |       13440 |   2.063e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.559803152110554 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6563204086488863, dt = 0.0027378991345490063 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.29 us    (1.7%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1093.00 ns (0.3%)
   LB compute        : 360.52 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (70.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8739583333333334
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,4.599880250050123e-19,-1.0953914052487523e-18)
    sum a = (1.8457019503326117e-17,1.839952100020049e-18,-1.0241920869252226e-17)
    sum e = 1.196361504823137
    sum de = 4.553649124439119e-18
Info: cfl dt = 0.0027404621556200905 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4991e+04    |       13440 |   2.068e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.66198091587084 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6590583077834353, dt = 0.0009416922165649266 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.11 us    (2.0%)
   patch tree reduce : 1282.00 ns (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 332.52 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (72.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8735863095238097
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,4.0967683477008905e-19,-1.0773482551793826e-18)
    sum a = (4.0172287517104405e-17,-2.2999401250250612e-17,6.108736802905106e-17)
    sum e = 1.1963607409999706
    sum de = 1.0625181290357943e-17
Info: cfl dt = 0.0027446110057809518 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6705e+04    |       13440 |   2.015e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 16.825573425464047 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 300                                                     [SPH][rank=0]
Info: time since start : 839.9172515600001 (s)                                        [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1904.58 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1901.65 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1834.39 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.6600000000000003, dt = 0.0027446110057809518 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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    (1.6%)
   patch tree reduce : 1212.00 ns (0.2%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.2%)
   LB compute        : 604.80 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 us    (74.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8661458333333336
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,4.575922540414445e-19,-8.797720185276528e-19)
    sum a = (2.4417697660682735e-17,5.412525760892311e-17,-4.331553902130532e-18)
    sum e = 1.1963615173963875
    sum de = -1.1492543028346347e-17
Info: cfl dt = 0.0027476576737581367 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.3027e+04    |       13440 |   2.132e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.334897207585975 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6627446110057812, dt = 0.0027476576737581367 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.49 us    (1.7%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 359.56 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (71.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8642857142857143
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,7.618551664145516e-19,-9.79570852728773e-19)
    sum a = (-1.0656389245949451e-17,2.6832634791959047e-17,-1.9008046824946705e-17)
    sum e = 1.1963615746205367
    sum de = 5.5294310796760726e-18
Info: cfl dt = 0.0027359517057193236 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5605e+04    |       13440 |   2.049e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.28378270403643 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6654922686795394, dt = 0.0027359517057193236 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.8%)
   patch tree reduce : 1302.00 ns (0.4%)
   gen split merge   : 712.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 348.78 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (74.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8639880952380954
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,5.366526958391809e-19,-1.0482995322461233e-18)
    sum a = (-1.8073696149155273e-17,-6.2865030084018344e-18,-1.5606052056680467e-17)
    sum e = 1.1963616324235782
    sum de = -1.3227266504323154e-17
Info: cfl dt = 0.0027378899982585725 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5829e+04    |       13440 |   2.042e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.242141486700696 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6682282203852586, dt = 0.0027378899982585725 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.15 us    (1.7%)
   patch tree reduce : 1392.00 ns (0.4%)
   gen split merge   : 692.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 352.70 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.32 us    (76.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.867782738095238
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,9.511210725364055e-19,-1.0786958763463895e-18)
    sum a = (2.6909299462793217e-17,-2.3459389275255625e-17,-1.0713887749075077e-17)
    sum e = 1.1963617145231689
    sum de = 2.6020852139652106e-18
Info: cfl dt = 0.0027282787385920293 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5779e+04    |       13440 |   2.043e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.24026399053772 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6709661103835172, dt = 0.0027282787385920293 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.64 us    (1.9%)
   patch tree reduce : 1293.00 ns (0.4%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1073.00 ns (0.3%)
   LB compute        : 333.69 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (70.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8783482142857144
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,7.007630068435734e-19,-1.1125361412067842e-18)
    sum a = (-2.9228405755526823e-17,8.157120976755551e-17,-6.096278793894553e-17)
    sum e = 1.1963617962929205
    sum de = 2.5153490401663703e-17
Info: cfl dt = 0.0027303486050952357 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5354e+04    |       13440 |   2.056e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.76010268526074 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6736943891221092, dt = 0.0027303486050952357 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.55 us    (1.9%)
   patch tree reduce : 1322.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 332.26 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (69.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8793898809523812
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,5.68396661106454e-19,-1.3364658584577595e-18)
    sum a = (-1.2534673681386584e-17,6.485831152570673e-17,-2.778854740642259e-17)
    sum e = 1.1963618866485017
    sum de = -7.697835424647081e-18
Info: cfl dt = 0.0027265068852193055 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5486e+04    |       13440 |   2.052e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.89276603209244 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6764247377272045, dt = 0.0027265068852193055 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (1.7%)
   patch tree reduce : 1273.00 ns (0.4%)
   gen split merge   : 661.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 325.78 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (71.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.878869047619048
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,1.2400360771741565e-18,-1.3816111675524896e-18)
    sum a = (-1.6099580875175429e-18,7.05314971674352e-18,-5.00967687336839e-17)
    sum e = 1.1963619670217007
    sum de = 2.5804011705155006e-17
Info: cfl dt = 0.0027352367038402333 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6321e+04    |       13440 |   2.026e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.43538869631645 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6791512446124238, dt = 0.0008487553875764497 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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 : 1193.00 ns (0.3%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 345.59 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (72.4%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8787202380952381
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,6.721634909659831e-19,-1.4430027984939137e-18)
    sum a = (4.086226955461192e-17,1.7939532975195477e-17,-3.610187265000276e-17)
    sum e = 1.196360917676638
    sum de = 0
Info: cfl dt = 0.002737953048462594 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.7763e+04    |       13440 |   1.983e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 15.405628999470869 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 308                                                     [SPH][rank=0]
Info: time since start : 848.414313655 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1925.22 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1895.29 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1816.52 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.6800000000000003, dt = 0.002737953048462594 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.25 us   (1.6%)
   patch tree reduce : 1242.00 ns (0.2%)
   gen split merge   : 581.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 626.90 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 us    (74.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.869717261904762
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,7.211270600338994e-19,-1.5325447382572593e-18)
    sum a = (1.9166167708542177e-20,4.860540130886296e-17,-2.190453391990014e-17)
    sum e = 1.1963620368527272
    sum de = -2.6129272356900657e-17
Info: cfl dt = 0.0027200812719815944 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4507e+04    |       13440 |   2.084e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.308024506720564 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6827379530484629, dt = 0.0027200812719815944 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 27.24 us   (7.0%)
   patch tree reduce : 1283.00 ns (0.3%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1093.00 ns (0.3%)
   LB compute        : 347.48 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (69.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8578125
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.0685138497512265e-18,-1.5725241662117965e-18)
    sum a = (-5.140366179431012e-17,-3.7259030025405995e-17,1.227113887539413e-17)
    sum e = 1.1963621033239185
    sum de = -9.378348791999613e-18
Info: cfl dt = 0.0027270780178387188 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5424e+04    |       13440 |   2.054e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.66749699096349 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6854580343204445, dt = 0.0027270780178387188 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.35 us    (1.6%)
   patch tree reduce : 1072.00 ns (0.3%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1113.00 ns (0.3%)
   LB compute        : 375.52 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.78 us    (71.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.856696428571429
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.1619489173303696e-18,-1.504394429435338e-18)
    sum a = (-1.153803296054239e-17,-9.659748525105258e-18,3.3008932336036765e-17)
    sum e = 1.19636216451991
    sum de = -1.1221492485224971e-17
Info: cfl dt = 0.0027342101924042956 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4722e+04    |       13440 |   2.077e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.277323896377695 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6881851123382832, dt = 0.0027342101924042956 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.71 us    (1.8%)
   patch tree reduce : 1342.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 347.49 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (72.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8587797619047617
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.008619575662032e-18,-1.3744238546617862e-18)
    sum a = (-1.4470456619949343e-17,-1.5179604825165406e-17,-1.6674565906431695e-17)
    sum e = 1.1963622207487425
    sum de = -2.45029690981724e-17
Info: cfl dt = 0.0027233235253718096 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6639e+04    |       13440 |   2.017e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.805060087654255 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6909193225306874, dt = 0.0027233235253718096 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.34 us    (1.8%)
   patch tree reduce : 1152.00 ns (0.3%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 337.79 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (72.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8741815476190475
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,1.0062238046984643e-18,-1.4871748256346946e-18)
    sum a = (-1.3607979073064945e-17,4.8298742625526285e-17,3.441285412068748e-17)
    sum e = 1.1963622522148196
    sum de = -2.0383000842727483e-17
Info: cfl dt = 0.0027138331521894357 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6655e+04    |       13440 |   2.016e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.62222204304664 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6936426460560593, dt = 0.0027138331521894357 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.37 us    (1.7%)
   patch tree reduce : 1423.00 ns (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 363.26 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (73.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8753720238095235
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,8.600817759208302e-19,-1.3432788321354053e-18)
    sum a = (5.213197616723472e-17,6.470498218403839e-17,-8.425447324675141e-17)
    sum e = 1.196362275280685
    sum de = -1.9244588561617704e-17
Info: cfl dt = 0.002718610169845758 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5615e+04    |       13440 |   2.048e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.69716016495847 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.6963564792082487, dt = 0.002718610169845758 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.53 us    (1.7%)
   patch tree reduce : 1112.00 ns (0.3%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 364.45 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (73.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8754464285714285
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,9.966407208441933e-19,-1.7292974286402625e-18)
    sum a = (-9.583083854271088e-18,-4.691877855051125e-17,-5.765183246729487e-17)
    sum e = 1.1963623007508026
    sum de = 5.502326025363935e-18
Info: cfl dt = 0.002727274400269188 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6334e+04    |       13440 |   2.026e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.304313248672585 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.6990750893780945, dt = 0.0009249106219058056 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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 : 1142.00 ns (0.3%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 357.50 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.76 us    (72.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8757440476190474
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.2026770237110216e-18,-1.7248053580835729e-18)
    sum a = (9.286008254788685e-18,6.133173666733497e-19,2.3996041971094807e-17)
    sum e = 1.1963610671993299
    sum de = -1.5937771935536915e-17
Info: cfl dt = 0.0027305945432045966 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6259e+04    |       13440 |   2.028e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 16.41532218198097 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 316                                                     [SPH][rank=0]
Info: time since start : 857.145220481 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1900.83 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1915.93 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1825.99 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.7000000000000003, dt = 0.0027305945432045966 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.58 us   (1.5%)
   patch tree reduce : 1383.00 ns (0.2%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 670.33 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 4.62 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.73 us    (78.8%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.874404761904762
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,1.116429269022582e-18,-1.6249316560398415e-18)
    sum a = (-3.978896416293356e-17,6.1331736667334966e-18,4.1149762070240055e-17)
    sum e = 1.1963623046841698
    sum de = 2.930056371142076e-17
Info: cfl dt = 0.002731338651376809 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4288e+04    |       13440 |   2.091e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.02120047809855 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7027305945432049, dt = 0.002731338651376809 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.06 us    (1.9%)
   patch tree reduce : 1493.00 ns (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 345.70 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8627232142857144
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.1499700625125306e-18,-1.4952605526367359e-18)
    sum a = (4.072810638065213e-18,-6.2865030084018344e-18,-1.0220358930580115e-17)
    sum e = 1.196362293718079
    sum de = -7.03376159399971e-18
Info: cfl dt = 0.0027188998209398867 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6422e+04    |       13440 |   2.023e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.59456451301614 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7054619331945816, dt = 0.0027188998209398867 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.43 us    (1.8%)
   patch tree reduce : 1292.00 ns (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 341.71 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (70.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8622023809523809
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,9.391422177185667e-19,-1.5791125363616078e-18)
    sum a = (-3.992791887882049e-17,-8.89310181676357e-18,-1.9285956256720567e-17)
    sum e = 1.1963622427280025
    sum de = -6.9253413767511596e-18
Info: cfl dt = 0.0026969549626084323 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6242e+04    |       13440 |   2.029e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.24281052742212 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7081808330155215, dt = 0.0026969549626084323 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.87 us    (1.9%)
   patch tree reduce : 1433.00 ns (0.4%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 342.28 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (70.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8626488095238096
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.135595436731124e-18,-1.6632639914569258e-18)
    sum a = (-2.852884063416503e-17,2.1466107833567238e-17,-2.8341970499006746e-17)
    sum e = 1.1963621671518279
    sum de = -4.87890977618477e-19
Info: cfl dt = 0.0027059108130421832 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5872e+04    |       13440 |   2.040e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.58585025822223 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.71087778797813, dt = 0.0027059108130421832 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.80 us    (1.9%)
   patch tree reduce : 1102.00 ns (0.3%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1283.00 ns (0.4%)
   LB compute        : 344.65 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (72.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.873065476190476
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,1.2074685656381572e-18,-1.76628214289034e-18)
    sum a = (-2.2405250051285806e-17,4.5998802500501224e-18,-4.3114294260365626e-17)
    sum e = 1.1963621068762171
    sum de = -6.938893903907228e-18
Info: cfl dt = 0.0027034715382778154 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5766e+04    |       13440 |   2.044e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.667191235187 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 0.7135836987911721, dt = 0.0027034715382778154 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.17 us    (1.7%)
   patch tree reduce : 1042.00 ns (0.3%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 354.08 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (71.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.870610119047619
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.1116377270954463e-18,-1.8660061092488484e-18)
    sum a = (1.0100570382401728e-17,-2.37660479585923e-17,-1.616486563393265e-17)
    sum e = 1.196362023800436
    sum de = 2.653584817158272e-17
Info: cfl dt = 0.0027130881685005844 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6581e+04    |       13440 |   2.019e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.214101367691285 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7162871703294499, dt = 0.0027130881685005844 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.46 us    (1.8%)
   patch tree reduce : 1332.00 ns (0.4%)
   gen split merge   : 702.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 333.60 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (72.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8715029761904765
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,1.293716320326597e-18,-1.892359589848094e-18)
    sum a = (2.7254290481546976e-17,1.7019556925185454e-17,6.96330830560973e-18)
    sum e = 1.1963619415109064
    sum de = -9.215718466126788e-19
Info: cfl dt = 0.002708619955665567 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6026e+04    |       13440 |   2.036e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.982279766106046 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7190002584979505, dt = 0.0009997415020498446 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.44 us    (1.9%)
   patch tree reduce : 1072.00 ns (0.3%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 324.94 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (69.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8723958333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,9.295591338642955e-19,-1.8354600294633596e-18)
    sum a = (-3.7872347392079344e-17,1.0273065891778608e-17,3.5050129196996506e-17)
    sum e = 1.1963610095189117
    sum de = -3.0899761915836876e-18
Info: cfl dt = 0.002697219802368361 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6583e+04    |       13440 |   2.019e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 17.83019697702118 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 324                                                     [SPH][rank=0]
Info: time since start : 865.654688447 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1981.32 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1966.45 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1877.15 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.7200000000000003, dt = 0.002697219802368361 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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    (1.7%)
   patch tree reduce : 1172.00 ns (0.2%)
   gen split merge   : 651.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1093.00 ns (0.2%)
   LB compute        : 559.69 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (73.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8752232142857141
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,9.487253015728379e-19,-1.737532891327527e-18)
    sum a = (3.971229949209939e-17,3.2812479117024205e-17,4.171995555956918e-17)
    sum e = 1.1963618217629766
    sum de = 9.269928574751063e-18
Info: cfl dt = 0.002705965412063857 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5537e+04    |       13440 |   2.051e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.34870165245751 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7226972198023687, dt = 0.002705965412063857 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.71 us    (1.9%)
   patch tree reduce : 1132.00 ns (0.3%)
   gen split merge   : 672.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 335.60 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 2.90 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (69.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.865550595238095
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,8.337282953215847e-19,-1.5997760609223799e-18)
    sum a = (-2.307606592108478e-17,-2.4532694666933987e-18,1.405359247228855e-17)
    sum e = 1.196361720152014
    sum de = -1.6263032587282567e-18
Info: cfl dt = 0.002697627502226255 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5487e+04    |       13440 |   2.052e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.46561244242272 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7254031852144325, dt = 0.002697627502226255 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.02 us    (1.9%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1133.00 ns (0.3%)
   LB compute        : 354.70 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (72.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.863764880952381
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.0733053916783619e-18,-1.6141506867037864e-18)
    sum a = (4.603713483591831e-17,1.1959688650130319e-17,7.660477656007952e-17)
    sum e = 1.1963616226124387
    sum de = 3.241764495731658e-17
Info: cfl dt = 0.0027043841970115384 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5288e+04    |       13440 |   2.059e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.175857381724335 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7281008127166587, dt = 0.0027043841970115384 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.27 us    (1.7%)
   patch tree reduce : 1202.00 ns (0.3%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 340.27 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (70.8%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8628720238095238
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,1.3799640750150368e-18,-1.3227650432598563e-18)
    sum a = (-1.602291620434126e-17,-9.046431158431908e-18,3.4108591208314373e-17)
    sum e = 1.1963615437243256
    sum de = -4.607859233063394e-18
Info: cfl dt = 0.002715303853334981 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5566e+04    |       13440 |   2.050e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.494967642120386 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7308051969136703, dt = 0.002715303853334981 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.53 us    (1.9%)
   patch tree reduce : 1302.00 ns (0.3%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 373.44 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (70.4%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8722470238095235
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.4470456619949344e-18,-1.2856305933245557e-18)
    sum a = (-3.014838180553684e-17,6.899820375075184e-18,2.001427062964517e-17)
    sum e = 1.1963614796652824
    sum de = -1.4799359654427136e-17
Info: cfl dt = 0.002713928994922633 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5248e+04    |       13440 |   2.060e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.45599667127625 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7335205007670053, dt = 0.002713928994922633 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.68 us    (1.9%)
   patch tree reduce : 1172.00 ns (0.3%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 329.93 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (71.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8768601190476188
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,1.3607979073064945e-18,-1.260474998207094e-18)
    sum a = (-3.515075157746635e-17,3.158584438367751e-17,5.063461931500486e-17)
    sum e = 1.1963614272536929
    sum de = 4.8138576458356397e-17
Info: cfl dt = 0.0027078512809554462 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4402e+04    |       13440 |   2.087e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.816856733371 (tsim/hr)                               [sph::Model][rank=0]
---------------- t = 0.7362344297619279, dt = 0.0027078512809554462 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.48 us    (1.9%)
   patch tree reduce : 1122.00 ns (0.3%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 330.52 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (68.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8769345238095236
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,1.2649670687637836e-18,-1.0760006340123757e-18)
    sum a = (-1.859118267728591e-18,2.368938328775813e-17,-6.111252362416851e-17)
    sum e = 1.1963613938632152
    sum de = -7.806255641895632e-18
Info: cfl dt = 0.0027101993884277487 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5114e+04    |       13440 |   2.064e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.228210992669474 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7389422810428833, dt = 0.0010577189571170376 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.56 us    (1.9%)
   patch tree reduce : 1222.00 ns (0.3%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1383.00 ns (0.4%)
   LB compute        : 331.08 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (70.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8765624999999997
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.514127248974832e-18,-1.2868284788063396e-18)
    sum a = (7.254394477683214e-18,-7.589802412582703e-18,-3.34078282014708e-17)
    sum e = 1.196360934874284
    sum de = 2.47198095326695e-17
Info: cfl dt = 0.002715247347567789 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6251e+04    |       13440 |   2.029e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 18.770211026226892 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 332                                                     [SPH][rank=0]
Info: time since start : 874.3236235170001 (s)                                        [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1965.10 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1925.37 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1835.53 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.7400000000000003, dt = 0.002715247347567789 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.61 us    (1.7%)
   patch tree reduce : 1272.00 ns (0.2%)
   gen split merge   : 892.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1473.00 ns (0.3%)
   LB compute        : 547.14 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (73.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.87641369047619
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.6866227583517116e-18,-1.36858416293809e-18)
    sum a = (1.9405744804898954e-17,8.663107804261064e-18,-2.0764146941241882e-17)
    sum e = 1.1963613816008438
    sum de = -1.3444106938820255e-17
Info: cfl dt = 0.002719829891787212 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.3494e+04    |       13440 |   2.117e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.179211577448655 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7427152473475681, dt = 0.002719829891787212 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.60 us    (1.8%)
   patch tree reduce : 1242.00 ns (0.3%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 341.67 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8743303571428571
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,1.2266347333466993e-18,-1.4176974676912293e-18)
    sum a = (-4.030165914913706e-17,-6.1331736667334966e-18,-1.9597406481984375e-18)
    sum e = 1.1963614061893917
    sum de = 1.9895109865109006e-17
Info: cfl dt = 0.0027019972146422656 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5337e+04    |       13440 |   2.057e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.59964604510515 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7454350772393553, dt = 0.0027019972146422656 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.30 us    (1.7%)
   patch tree reduce : 1282.00 ns (0.3%)
   gen split merge   : 881.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 351.87 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.7%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.857217261904762
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,1.5812088359547296e-18,-1.4015260136871468e-18)
    sum a = (-5.912762738085262e-18,-8.27978445009022e-18,-1.721840591516158e-17)
    sum e = 1.1963614356246968
    sum de = 8.782037597132586e-18
Info: cfl dt = 0.002721051581059268 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5875e+04    |       13440 |   2.040e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.67675295172941 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7481370744539976, dt = 0.002721051581059268 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.32 us    (1.8%)
   patch tree reduce : 1333.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 331.68 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (69.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8555059523809523
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.629124255226085e-18,-1.461719759146787e-18)
    sum a = (-5.1556991135978454e-18,-4.086226955461192e-17,3.937449578623634e-17)
    sum e = 1.1963614936536375
    sum de = -1.0787811616230769e-17
Info: cfl dt = 0.0027148294005358196 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6173e+04    |       13440 |   2.031e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.230093557465544 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7508581260350569, dt = 0.0027148294005358196 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.37 us    (1.8%)
   patch tree reduce : 1213.00 ns (0.3%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1033.00 ns (0.3%)
   LB compute        : 342.51 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.45 us    (71.4%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8612351190476193
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.3703809911607657e-18,-1.2784432804338525e-18)
    sum a = (2.0891122802310974e-17,1.832285632936632e-17,3.8770761503417256e-17)
    sum e = 1.1963615529462963
    sum de = -4.391018798566293e-18
Info: cfl dt = 0.0027240638750675845 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6440e+04    |       13440 |   2.023e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.313915570407815 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7535729554355927, dt = 0.0027240638750675845 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.8%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1051.00 ns (0.3%)
   LB compute        : 317.85 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.06 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (69.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8744791666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,1.3320486557436814e-18,-1.1733288294073165e-18)
    sum a = (-9.23809283551733e-18,6.24817067298475e-18,-3.821254686890597e-18)
    sum e = 1.1963616265265533
    sum de = 1.0842021724855044e-18
Info: cfl dt = 0.0026821351100923805 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6328e+04    |       13440 |   2.026e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.39661472790617 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7562970193106603, dt = 0.0026821351100923805 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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 : 1322.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.4%)
   LB compute        : 342.61 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.874330357142857
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.2745501526180548e-18,-1.241608301868998e-18)
    sum a = (-1.0848050923034873e-17,2.1351110827315987e-17,3.455420460753798e-17)
    sum e = 1.1963616788817744
    sum de = 1.7618285302889447e-17
Info: cfl dt = 0.002690296015808094 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6392e+04    |       13440 |   2.024e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.698064117085956 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7589791544207527, dt = 0.0010208455792476423 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.95 us    (2.0%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 323.02 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (69.7%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.874404761904762
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,1.3607979073064945e-18,-1.146975348808071e-18)
    sum a = (-1.2113017991798656e-17,-9.180594332391703e-17,2.6856592501594725e-18)
    sum e = 1.1963610959717759
    sum de = 3.0926866970149014e-17
Info: cfl dt = 0.002694699973330567 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.7130e+04    |       13440 |   2.002e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 18.355951174931917 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 340                                                     [SPH][rank=0]
Info: time since start : 882.9224081340001 (s)                                        [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1985.49 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1994.99 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1888.11 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.7600000000000003, dt = 0.002694699973330567 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.31 us    (1.5%)
   patch tree reduce : 892.00 ns  (0.1%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 597.28 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (71.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8750744047619043
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,8.62477546884398e-19,-1.1523658334760984e-18)
    sum a = (2.595099107736611e-17,-4.093893422544609e-17,-1.705549348963897e-17)
    sum e = 1.196361751175015
    sum de = 2.9815559743351372e-18
Info: cfl dt = 0.0026970728153279957 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4948e+04    |       13440 |   2.069e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.87889997692588 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.762694699973331, dt = 0.0026970728153279957 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.75 us    (1.9%)
   patch tree reduce : 1332.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 338.07 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.13 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (68.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.875297619047619
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,9.391422177185667e-19,-1.2308273325329429e-18)
    sum a = (-3.925231146709438e-17,-6.547162889238007e-17,-1.458066208427346e-17)
    sum e = 1.1963618412360537
    sum de = -1.6154612370034016e-17
Info: cfl dt = 0.0026903725207967706 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5467e+04    |       13440 |   2.053e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.295574185613916 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.765391772788659, dt = 0.0026903725207967706 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.48 us    (1.8%)
   patch tree reduce : 1102.00 ns (0.3%)
   gen split merge   : 762.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 342.51 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (72.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8623511904761902
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,1.1020546432411752e-18,-1.2684109895239123e-18)
    sum a = (1.100138026470321e-17,2.4609359337768156e-17,5.045254072177371e-17)
    sum e = 1.1963619025785854
    sum de = 9.242823520438925e-18
Info: cfl dt = 0.002686949684520472 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5227e+04    |       13440 |   2.061e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.00466364901225 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7680821453094557, dt = 0.002686949684520472 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.74 us    (1.7%)
   patch tree reduce : 1463.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 379.39 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (72.7%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8613095238095236
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,8.241452114673136e-19,-1.051294245950583e-18)
    sum a = (1.381880691785891e-17,4.645879052550624e-17,-7.287935271173164e-18)
    sum e = 1.196361957938706
    sum de = -3.645629804982509e-18
Info: cfl dt = 0.0026871411026578315 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5102e+04    |       13440 |   2.064e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.85488886252598 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7707690949939762, dt = 0.0026871411026578315 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.40 us    (1.7%)
   patch tree reduce : 1332.00 ns (0.4%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 348.47 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.37 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (72.8%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8616071428571428
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,1.1499700625125306e-18,-1.1483229699750779e-18)
    sum a = (3.124085336492375e-18,-5.216072541879753e-17,3.285081145244129e-17)
    sum e = 1.1963620065329896
    sum de = -2.7850443305721395e-18
Info: cfl dt = 0.0027168977601497793 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5413e+04    |       13440 |   2.055e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.08228982643745 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.773456236096634, dt = 0.0027168977601497793 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.25 us    (1.6%)
   patch tree reduce : 1032.00 ns (0.3%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 372.81 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.52 us    (71.7%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8720982142857145
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,9.295591338642955e-19,-1.0012825270861057e-18)
    sum a = (4.2491393809838005e-17,1.5692299811368908e-18,-1.4724408342087526e-17)
    sum e = 1.1963620673632842
    sum de = -2.623006927762392e-17
Info: cfl dt = 0.002715423131851485 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5807e+04    |       13440 |   2.042e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.89020503494669 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7761731338567839, dt = 0.002715423131851485 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.07 us    (1.7%)
   patch tree reduce : 1152.00 ns (0.3%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 338.99 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (69.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8694940476190478
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,1.0349730562612776e-18,-1.1191245113565955e-18)
    sum a = (5.192114832244076e-17,-1.8437853335617574e-17,5.9558866154294815e-18)
    sum e = 1.1963620991560848
    sum de = -1.7733481783716032e-17
Info: cfl dt = 0.0027154243733455872 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5580e+04    |       13440 |   2.049e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.69933546386448 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7788885569886353, dt = 0.0011114430113650098 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.68 us    (1.8%)
   patch tree reduce : 1513.00 ns (0.4%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.4%)
   LB compute        : 356.93 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (70.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8697172619047622
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,6.133173666733497e-19,-1.0692625281773413e-18)
    sum a = (-1.3339652725145356e-17,1.258258910065794e-17,-2.4019999680730483e-17)
    sum e = 1.1963612779408017
    sum de = 1.3654171109739321e-17
Info: cfl dt = 0.002716280475367215 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6554e+04    |       13440 |   2.019e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 19.813605395802732 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 348                                                     [SPH][rank=0]
Info: time since start : 891.8854512930001 (s)                                        [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1961.91 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1966.30 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1873.67 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.7800000000000004, dt = 0.002716280475367215 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.53 us   (1.5%)
   patch tree reduce : 1242.00 ns (0.2%)
   gen split merge   : 541.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.2%)
   LB compute        : 666.95 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.79 us    (76.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8704613095238096
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,1.082888475532633e-18,-1.156857904032788e-18)
    sum a = (-6.18492231954656e-17,-1.1212208109497174e-17,4.6837322337749944e-17)
    sum e = 1.1963621164641822
    sum de = -2.6156377411212794e-17
Info: cfl dt = 0.0027129334523933726 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5954e+04    |       13440 |   2.038e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.98649489306433 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7827162804753676, dt = 0.0027129334523933726 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.64 us    (1.7%)
   patch tree reduce : 1293.00 ns (0.3%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1263.00 ns (0.3%)
   LB compute        : 369.90 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (72.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8734374999999999
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,8.433113791758558e-19,-9.25965477418944e-19)
    sum a = (2.165776951065266e-17,3.398161534724528e-17,2.3286893765878747e-18)
    sum e = 1.1963621437723564
    sum de = 2.959871930885427e-17
Info: cfl dt = 0.0027189206407590635 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6276e+04    |       13440 |   2.028e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.161670944132695 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7854292139277609, dt = 0.0027189206407590635 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.33 us    (1.7%)
   patch tree reduce : 1192.00 ns (0.3%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1403.00 ns (0.4%)
   LB compute        : 362.91 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (69.4%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8639136904761906
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,9.870576369899221e-19,-9.873571083603682e-19)
    sum a = (2.26064948122255e-17,-4.2472227642129466e-17,6.096278793894553e-17)
    sum e = 1.1963621663545485
    sum de = 1.8973538018496328e-17
Info: cfl dt = 0.0027109948011856404 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5582e+04    |       13440 |   2.049e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.76217736231873 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.78814813456852, dt = 0.0027109948011856404 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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 : 1303.00 ns (0.4%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 335.07 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.91 us    (75.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.862276785714286
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,6.612327859447051e-19,-7.404429634276646e-19)
    sum a = (3.794901206291351e-17,-3.729736236082308e-17,-1.6106768188066133e-17)
    sum e = 1.1963621784163447
    sum de = 5.8817967857338616e-18
Info: cfl dt = 0.0027039894862640836 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6091e+04    |       13440 |   2.034e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.992367726945865 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7908591293697056, dt = 0.0027039894862640836 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.38 us    (1.8%)
   patch tree reduce : 1313.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 338.45 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (69.4%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8619791666666667
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,9.487253015728379e-19,-8.83290807130393e-19)
    sum a = (1.2113017991798656e-17,-4.868206597969713e-18,7.405328048387984e-18)
    sum e = 1.1963621917917078
    sum de = 2.4936649967166602e-18
Info: cfl dt = 0.0027387170902883977 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5516e+04    |       13440 |   2.051e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.452202084393754 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.7935631188559696, dt = 0.0027387170902883977 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.26 us    (1.7%)
   patch tree reduce : 1362.00 ns (0.3%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1533.00 ns (0.4%)
   LB compute        : 394.56 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.39 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (71.7%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8738095238095238
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,1.2553839849095127e-18,-8.303592424040676e-19)
    sum a = (9.50641918343692e-18,-9.736413195939425e-18,-1.0168849854863409e-17)
    sum e = 1.19636223953621
    sum de = 6.315477654728063e-18
Info: cfl dt = 0.002728357961433306 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5434e+04    |       13440 |   2.054e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.00111512240604 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.796301835946258, dt = 0.002728357961433306 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.55 us    (1.7%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 373.82 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.28 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (72.4%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8752976190476192
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,8.049790437587714e-19,-8.805206969537677e-19)
    sum a = (2.1600271007527034e-17,6.133173666733497e-19,-1.3526522860303641e-17)
    sum e = 1.1963622577825563
    sum de = 9.893344823930228e-18
Info: cfl dt = 0.0027341828665956194 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6265e+04    |       13440 |   2.028e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.42732838021476 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.7990301939076914, dt = 0.0009698060923090113 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.73 us    (1.8%)
   patch tree reduce : 1263.00 ns (0.3%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1073.00 ns (0.3%)
   LB compute        : 348.50 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (70.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8756696428571427
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,7.474805406331449e-19,-8.98638714865749e-19)
    sum a = (1.0733053916783619e-17,5.1940314490149304e-17,-3.684695741967234e-18)
    sum e = 1.1963613370884156
    sum de = -3.496552006265752e-18
Info: cfl dt = 0.0027292889590066973 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6398e+04    |       13440 |   2.024e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 17.248259437828985 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 356                                                     [SPH][rank=0]
Info: time since start : 900.5190383250001 (s)                                        [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1935.93 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1937.80 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1853.72 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.8000000000000004, dt = 0.0027292889590066973 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.12 us   (1.6%)
   patch tree reduce : 1132.00 ns (0.2%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1273.00 ns (0.2%)
   LB compute        : 594.23 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.55 us    (72.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8773065476190476
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,8.145621276130425e-19,-9.055265563860063e-19)
    sum a = (8.27978445009022e-18,-7.69329971820883e-17,-4.348923241616398e-17)
    sum e = 1.1963622808025691
    sum de = -1.7970651008947236e-17
Info: cfl dt = 0.00271553635577178 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6224e+04    |       13440 |   2.029e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.41386508022603 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8027292889590071, dt = 0.00271553635577178 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.52 us    (1.7%)
   patch tree reduce : 1594.00 ns (0.4%)
   gen split merge   : 682.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.3%)
   LB compute        : 363.23 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.04 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (73.4%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8774553571428572
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,4.4082185729647e-19,-1.0748027485305918e-18)
    sum a = (-4.101559889628026e-17,4.5615479146330385e-18,3.3450952078815017e-17)
    sum e = 1.1963623217646224
    sum de = 5.692061405548898e-18
Info: cfl dt = 0.002718889404795711 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6091e+04    |       13440 |   2.034e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.07297734506769 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8054448253147789, dt = 0.002718889404795711 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.7%)
   patch tree reduce : 1383.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 351.57 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.90 us    (71.4%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8730654761904764
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,8.145621276130425e-19,-8.959434725317353e-19)
    sum a = (8.337282953215848e-18,9.544751518854004e-18,-1.6660191280650286e-17)
    sum e = 1.196362369326795
    sum de = -1.2739375526704677e-18
Info: cfl dt = 0.002730180244303728 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5961e+04    |       13440 |   2.038e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.03787316030236 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8081637147195746, dt = 0.002730180244303728 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.85 us    (1.8%)
   patch tree reduce : 1322.00 ns (0.3%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 370.64 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.26 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (72.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8582589285714288
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.1499700625125306e-18,-9.908010291204968e-19)
    sum a = (-3.610905996289346e-17,-7.559136544249035e-17,4.985719163732712e-17)
    sum e = 1.1963624257617573
    sum de = 1.7536970139953034e-17
Info: cfl dt = 0.002712636052087074 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6028e+04    |       13440 |   2.035e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.286330549506964 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8108938949638783, dt = 0.002712636052087074 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.62 us    (1.7%)
   patch tree reduce : 1332.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 365.78 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (70.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8581845238095234
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,5.366526958391809e-19,-7.709890432131537e-19)
    sum a = (-7.685633251125413e-18,-2.2232754541908927e-18,-2.3561209541207254e-17)
    sum e = 1.1963624546768312
    sum de = -6.80336863234654e-18
Info: cfl dt = 0.0026991825690151783 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6183e+04    |       13440 |   2.031e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.088533752276625 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8136065310159654, dt = 0.0026991825690151783 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.81 us    (1.9%)
   patch tree reduce : 1403.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 342.50 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.13 us    (66.8%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8648809523809522
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,7.474805406331449e-19,-9.25216798992829e-19)
    sum a = (2.8557589885727846e-18,5.213197616723472e-18,5.4179162455603386e-17)
    sum e = 1.1963624781120037
    sum de = -2.3445871979999033e-17
Info: cfl dt = 0.002737322345313588 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5737e+04    |       13440 |   2.045e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.527194024958824 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8163057135849805, dt = 0.002737322345313588 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.61 us    (1.8%)
   patch tree reduce : 1262.00 ns (0.3%)
   gen split merge   : 802.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 353.79 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (69.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8754464285714285
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,6.229004505276207e-19,-6.648264423900568e-19)
    sum a = (-3.608989379518492e-17,2.2999401250250612e-17,-3.432421059503547e-17)
    sum e = 1.196362536782279
    sum de = 2.710505431213761e-19
Info: cfl dt = 0.002717935155698735 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6270e+04    |       13440 |   2.028e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.58955505833167 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.819043035930294, dt = 0.0009569640697063564 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.00 us    (1.7%)
   patch tree reduce : 1342.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 337.35 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.22 us    (71.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8763392857142855
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,4.4082185729647e-19,-8.256425683195435e-19)
    sum a = (1.864868118041154e-17,1.1423035954291138e-17,-3.766151954728538e-18)
    sum e = 1.1963614667583924
    sum de = 1.4203048459560108e-17
Info: cfl dt = 0.002713496074849486 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6382e+04    |       13440 |   2.025e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 17.01561125839641 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 364                                                     [SPH][rank=0]
Info: time since start : 909.0866464420001 (s)                                        [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1956.22 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1953.32 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1875.46 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.8200000000000004, dt = 0.002713496074849486 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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    (1.5%)
   patch tree reduce : 1172.00 ns (0.2%)
   gen split merge   : 601.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.2%)
   LB compute        : 620.88 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.12 us    (72.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8764880952380953
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,6.324835343818918e-19,-8.141129205573736e-19)
    sum a = (2.4494362331516902e-17,-2.8365928208642422e-18,9.151845080828889e-18)
    sum e = 1.1963625175240316
    sum de = 6.396792817664476e-18
Info: cfl dt = 0.002698201696714052 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.3980e+04    |       13440 |   2.101e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.50267568316107 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8227134960748499, dt = 0.002698201696714052 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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 : 1222.00 ns (0.3%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 358.11 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (74.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8774553571428572
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,4.791541927135544e-19,-7.761549243533467e-19)
    sum a = (-2.2596911728371226e-17,-2.7139293475295722e-17,1.8112028484572356e-18)
    sum e = 1.196362516491338
    sum de = 1.588356182691264e-17
Info: cfl dt = 0.0027236456479483766 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6138e+04    |       13440 |   2.032e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.80012167319151 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.825411697771564, dt = 0.0027236456479483766 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.54 us    (1.8%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1283.00 ns (0.4%)
   LB compute        : 342.36 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (69.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8761160714285718
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,4.791541927135544e-19,-7.940483387374935e-19)
    sum a = (5.746017079020945e-17,-1.9166167708542177e-18,5.520814608445574e-17)
    sum e = 1.1963625393409247
    sum de = 3.122502256758253e-17
Info: cfl dt = 0.0027203654043325876 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6072e+04    |       13440 |   2.034e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.2028280686221 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.8281353434195123, dt = 0.0027203654043325876 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.8%)
   patch tree reduce : 1253.00 ns (0.4%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 330.48 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.25 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (70.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8639880952380954
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,5.366526958391809e-19,-5.645784011332678e-19)
    sum a = (-4.6137757216388154e-17,4.193557494629029e-17,-5.749850312562653e-19)
    sum e = 1.1963625376516538
    sum de = 7.26415455565288e-18
Info: cfl dt = 0.002721376845198565 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5577e+04    |       13440 |   2.050e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.783730918514074 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.830855708823845, dt = 0.002721376845198565 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.30 us    (1.6%)
   patch tree reduce : 1343.00 ns (0.3%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 379.89 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.07 us    (76.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8629464285714286
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,9.870576369899221e-19,-6.342803626045677e-19)
    sum a = (-2.707700343024296e-17,-9.966407208441932e-18,-5.435525162142561e-17)
    sum e = 1.1963625404290814
    sum de = 1.111307226797642e-17
Info: cfl dt = 0.0027261935811478026 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5823e+04    |       13440 |   2.042e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.980939903388055 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8335770856690435, dt = 0.0027261935811478026 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.35 us    (1.7%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 702.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 350.56 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.10 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (71.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.864732142857143
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,2.4916018021104833e-19,-8.609053221895566e-19)
    sum a = (2.8653420724270553e-18,-1.663623357101461e-17,-2.6085154251325903e-17)
    sum e = 1.1963625462392902
    sum de = -1.328147661294743e-17
Info: cfl dt = 0.0027313104527088004 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6278e+04    |       13440 |   2.028e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.39852308258419 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8363032792501913, dt = 0.0027313104527088004 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.77 us    (1.8%)
   patch tree reduce : 1302.00 ns (0.4%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 348.45 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (73.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.874107142857143
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,3.25824851045217e-19,-9.027190122880753e-19)
    sum a = (-3.6137809214456274e-17,-3.350246115453172e-17,9.151845080828889e-18)
    sum e = 1.196362549293603
    sum de = 1.610040226140974e-17
Info: cfl dt = 0.0027115369789117317 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6008e+04    |       13440 |   2.036e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.29150750938634 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8390345897029001, dt = 0.0009654102971002887 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.55 us    (1.7%)
   patch tree reduce : 1232.00 ns (0.3%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 358.83 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.54 us    (71.7%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8721726190476191
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,6.037342828190786e-19,-8.384449694061087e-19)
    sum a = (1.6032499288195532e-17,1.1193041941788632e-17,1.717288626685379e-17)
    sum e = 1.1963615336363602
    sum de = 1.2630955309456127e-17
Info: cfl dt = 0.0026854321316562854 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6601e+04    |       13440 |   2.018e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 17.222459251697515 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 372                                                     [SPH][rank=0]
Info: time since start : 917.7171008780001 (s)                                        [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1957.99 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1955.54 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1872.57 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.8400000000000004, dt = 0.0026854321316562854 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.92 us   (1.9%)
   patch tree reduce : 1182.00 ns (0.2%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1193.00 ns (0.2%)
   LB compute        : 544.57 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.73 us    (70.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8720238095238098
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,9.487253015728379e-19,-7.861123474206752e-19)
    sum a = (4.9333715681787565e-17,5.0675347421385516e-17,-1.04743106527183e-17)
    sum e = 1.1963624900417378
    sum de = -2.47198095326695e-17
Info: cfl dt = 0.0026911168732520877 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6034e+04    |       13440 |   2.035e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.49875210042953 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8426854321316567, dt = 0.0026911168732520877 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.45 us    (2.1%)
   patch tree reduce : 1373.00 ns (0.4%)
   gen split merge   : 722.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 335.78 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (70.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8734375000000003
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,7.187312890703316e-19,-8.453328109263661e-19)
    sum a = (-2.4935184188813372e-17,-4.13989222504511e-18,-5.068493050523979e-17)
    sum e = 1.1963624827733097
    sum de = 5.095750210681871e-18
Info: cfl dt = 0.002692094333835979 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5910e+04    |       13440 |   2.039e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.510577560145684 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8453765490049088, dt = 0.002692094333835979 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.30 us    (1.8%)
   patch tree reduce : 1223.00 ns (0.4%)
   gen split merge   : 682.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1383.00 ns (0.4%)
   LB compute        : 326.22 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (69.4%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8767113095238093
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,7.666467083416871e-19,-1.0544386953402657e-18)
    sum a = (-1.5026275483497067e-17,-5.213197616723472e-18,-4.772375759427002e-17)
    sum e = 1.1963624616863173
    sum de = 2.2768245622195593e-18
Info: cfl dt = 0.0026828652109072 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5836e+04    |       13440 |   2.041e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.47425644351357 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8480686433387448, dt = 0.0026828652109072 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.35 us    (1.8%)
   patch tree reduce : 1152.00 ns (0.3%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 337.01 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (70.4%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8662202380952382
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,7.762297921959581e-19,-1.1606012961633627e-18)
    sum a = (-1.24963413459695e-17,-2.315273059191895e-17,2.4178120564325958e-17)
    sum e = 1.1963624314202588
    sum de = -3.1956859034010243e-17
Info: cfl dt = 0.0026945524823045472 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4836e+04    |       13440 |   2.073e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.5925323744637 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.850751508549652, dt = 0.0026945524823045472 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.29 us    (1.6%)
   patch tree reduce : 1583.00 ns (0.4%)
   gen split merge   : 741.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1313.00 ns (0.3%)
   LB compute        : 365.66 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (71.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.866592261904762
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,3.7374027031657247e-19,-9.98587284752092e-19)
    sum a = (-2.130319540804463e-17,-1.6866227583517116e-17,2.81071849445771e-17)
    sum e = 1.1963624193285323
    sum de = 1.111307226797642e-18
Info: cfl dt = 0.0027088784639397 cfl multiplier : 0.9999999999999997          [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6256e+04    |       13440 |   2.028e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.82085637368394 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8534460610319565, dt = 0.0027088784639397 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.8%)
   patch tree reduce : 1573.00 ns (0.4%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 340.51 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (70.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8665178571428571
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,4.983203604220967e-19,-9.193771072691325e-19)
    sum a = (2.552933538777818e-17,-2.2232754541908925e-17,-5.46235779693452e-18)
    sum e = 1.1963624144128395
    sum de = 9.507097799982267e-18
Info: cfl dt = 0.0027180963016132714 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.3809e+04    |       13440 |   2.106e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.299519544176434 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8561549394958963, dt = 0.0027180963016132714 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.55 us    (1.9%)
   patch tree reduce : 1422.00 ns (0.4%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 327.61 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (69.7%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8745535714285715
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,7.474805406331449e-19,-9.831645091741244e-19)
    sum a = (-6.49493508223223e-18,-4.8375407296360455e-17,3.988479500147627e-17)
    sum e = 1.1963624128773886
    sum de = 7.80794970779014e-18
Info: cfl dt = 0.0027085582255000546 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5787e+04    |       13440 |   2.043e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.89669497008627 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8588730357975095, dt = 0.001126964202490921 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.49 us    (1.8%)
   patch tree reduce : 1292.00 ns (0.4%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1482.00 ns (0.4%)
   LB compute        : 333.57 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.05 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (70.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8783482142857142
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,-2.395770963567772e-19,-8.698145954603243e-19)
    sum a = (-3.0450248946946384e-17,1.6176245546009598e-17,1.6176245546009598e-17)
    sum e = 1.1963616126330792
    sum de = 1.0333801956502464e-17
Info: cfl dt = 0.002701028816869961 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6636e+04    |       13440 |   2.017e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 20.115209037099323 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 380                                                     [SPH][rank=0]
Info: time since start : 926.5714619810001 (s)                                        [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1958.05 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1954.87 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1872.55 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.8600000000000004, dt = 0.002701028816869961 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.27 us   (1.4%)
   patch tree reduce : 1223.00 ns (0.2%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.1%)
   LB compute        : 715.65 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.32 us    (76.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8808035714285714
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,6.51649702090434e-19,-8.40915608212288e-19)
    sum a = (4.199307344941591e-17,6.976485045909353e-18,-7.30230989695457e-18)
    sum e = 1.1963623871571312
    sum de = -2.9991742596380266e-17
Info: cfl dt = 0.0026824347485011734 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.3396e+04    |       13440 |   2.120e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.86618070271959 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8627010288168704, dt = 0.0026824347485011734 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.18 us    (2.1%)
   patch tree reduce : 1232.00 ns (0.4%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1373.00 ns (0.4%)
   LB compute        : 324.75 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.20 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (69.8%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8810267857142857
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,5.749850312562653e-19,-8.771516440362505e-19)
    sum a = (-1.77670374658186e-17,3.687570667123515e-17,1.2122601075652927e-17)
    sum e = 1.1963623857829295
    sum de = 1.2441219929271163e-17
Info: cfl dt = 0.0026679140869712106 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.3786e+04    |       13440 |   2.107e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 45.83113297698348 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8653834635653715, dt = 0.0026679140869712106 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.41 us    (1.8%)
   patch tree reduce : 1382.00 ns (0.4%)
   gen split merge   : 772.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 336.88 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.14 us    (68.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8796875000000002
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,5.462357796934521e-19,-8.418140223236259e-19)
    sum a = (-1.7939532975195477e-17,9.199760500100245e-18,8.265888978501527e-17)
    sum e = 1.196362382897287
    sum de = 1.8973538018496328e-18
Info: cfl dt = 0.002723357500182247 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5780e+04    |       13440 |   2.043e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.00751340343789 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8680513776523427, dt = 0.002723357500182247 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.58 us    (1.8%)
   patch tree reduce : 1212.00 ns (0.3%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 341.96 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.39 us    (68.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8654761904761907
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,-2.587432640653194e-19,-5.25272783762234e-19)
    sum a = (4.201223961712445e-17,3.7719018050411005e-17,1.2932371661338834e-17)
    sum e = 1.1963624300203815
    sum de = 1.623592753297043e-17
Info: cfl dt = 0.002671770368655803 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5731e+04    |       13440 |   2.045e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.94890969018466 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.870774735152525, dt = 0.002671770368655803 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.66 us    (1.9%)
   patch tree reduce : 1242.00 ns (0.3%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 336.79 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.65 us    (73.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8607886904761908
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,4.4082185729647e-19,-5.731882030335895e-19)
    sum a = (-1.6252910216843767e-17,-1.0963047929286125e-17,-2.1092367563250667e-17)
    sum e = 1.1963624082970945
    sum de = 1.9651164376299768e-17
Info: cfl dt = 0.002696626968583602 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5677e+04    |       13440 |   2.046e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.001931789253675 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8734465055211809, dt = 0.002696626968583602 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.67 us    (1.9%)
   patch tree reduce : 1283.00 ns (0.4%)
   gen split merge   : 701.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 332.81 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.35 us    (74.7%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8606398809523808
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,7.858128760502293e-19,-6.780031826896796e-19)
    sum a = (-8.030624269879172e-18,-2.0009479087718033e-17,-1.1026535859820671e-17)
    sum e = 1.1963624412000133
    sum de = 1.6534083130403943e-18
Info: cfl dt = 0.0026991586947251595 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5449e+04    |       13440 |   2.053e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.27477364337136 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8761431324897645, dt = 0.0026991586947251595 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.74 us    (1.9%)
   patch tree reduce : 1273.00 ns (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 330.50 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.32 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.23 us    (75.8%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8645089285714285
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229112,-1.4374625781406634e-20,-6.893830947666265e-19)
    sum a = (-7.340642232371654e-18,-2.7599281500300737e-18,5.74709517595455e-17)
    sum e = 1.1963624668923585
    sum de = 8.673617379884035e-18
Info: cfl dt = 0.0026842975940964153 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4877e+04    |       13440 |   2.072e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.90515861875844 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8788422911844896, dt = 0.001157708815510805 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.09 us    (1.7%)
   patch tree reduce : 1392.00 ns (0.3%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 396.49 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 2.99 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.00 us    (69.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8727678571428572
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,1.6914143002788472e-18,-5.156896999079629e-19)
    sum a = (6.079508397149579e-17,-7.666467083416871e-20,-3.3936095698937493e-18)
    sum e = 1.1963617243220461
    sum de = 2.087089182034596e-18
Info: cfl dt = 0.002681998404248389 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6898e+04    |       13440 |   2.009e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 20.744964161556386 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 388                                                     [SPH][rank=0]
Info: time since start : 935.221539396 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1952.31 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1954.87 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1858.16 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.8800000000000004, dt = 0.002681998404248389 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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    (1.7%)
   patch tree reduce : 1202.00 ns (0.2%)
   gen split merge   : 591.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.2%)
   LB compute        : 558.06 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (72.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8790178571428569
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,7.858128760502293e-19,-5.537225639546013e-19)
    sum a = (-5.8265149833968216e-18,4.737876657551626e-17,-1.2474779407297389e-17)
    sum e = 1.1963624777858364
    sum de = -2.859583229930518e-17
Info: cfl dt = 0.002673156069484904 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4833e+04    |       13440 |   2.073e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.575510563905354 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8826819984042489, dt = 0.002673156069484904 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.53 us    (1.7%)
   patch tree reduce : 1373.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 361.78 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (71.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8791666666666664
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.4326710362135277e-18,-6.115205384506738e-19)
    sum a = (-1.4547121290783512e-17,5.85718085173049e-17,3.4640452362226416e-17)
    sum e = 1.196362524472586
    sum de = -4.296151108473811e-18
Info: cfl dt = 0.0027063739520595135 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5373e+04    |       13440 |   2.056e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.808461724310504 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8853551544737338, dt = 0.0027063739520595135 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.88 us    (1.8%)
   patch tree reduce : 1333.00 ns (0.3%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 365.31 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.92 us    (75.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.879613095238095
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,8.672690888115335e-19,-4.719668798228511e-19)
    sum a = (3.25824851045217e-18,-5.466191030476229e-17,1.0289836288523582e-17)
    sum e = 1.19636259414675
    sum de = 9.703609443745265e-18
Info: cfl dt = 0.0026881782277332266 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5439e+04    |       13440 |   2.054e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.437838766559175 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8880615284257933, dt = 0.0026881782277332266 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.97 us    (1.8%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 861.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 369.73 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (72.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8777529761904759
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,1.145178520585395e-18,-4.776568358613246e-19)
    sum a = (6.495414236424944e-17,-2.974589228365746e-17,9.190177416245975e-17)
    sum e = 1.1963626303009778
    sum de = 3.869246503057644e-18
Info: cfl dt = 0.0027047789226965187 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5533e+04    |       13440 |   2.051e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.18719755622535 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.8907497066535266, dt = 0.0027047789226965187 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.77 us    (1.9%)
   patch tree reduce : 1653.00 ns (0.5%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 333.05 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (71.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8659970238095238
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,1.3416317395979523e-19,-1.1424832782513814e-19)
    sum a = (7.934793431336462e-18,3.334913181286339e-17,1.410629943348704e-17)
    sum e = 1.1963626893952544
    sum de = 1.8722816266109055e-17
Info: cfl dt = 0.0026954550150664184 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5624e+04    |       13440 |   2.048e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.5443846076173 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.8934544855762231, dt = 0.0026954550150664184 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.43 us    (1.8%)
   patch tree reduce : 1202.00 ns (0.3%)
   gen split merge   : 831.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 329.21 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (69.7%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8658482142857142
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,9.535168434999733e-19,-1.8761881358440117e-19)
    sum a = (4.8432905799486085e-17,-1.5332934166833741e-18,-2.197880281977074e-17)
    sum e = 1.1963627245958572
    sum de = 2.5383883363316873e-17
Info: cfl dt = 0.0026863483021002765 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5925e+04    |       13440 |   2.039e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.597614331924646 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8961499405912895, dt = 0.0026863483021002765 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.49 us    (1.8%)
   patch tree reduce : 1243.00 ns (0.3%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 350.08 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 us    (67.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.866220238095238
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.566834210173323e-18,-2.888401367951395e-19)
    sum a = (3.978896416293356e-17,6.899820375075184e-19,4.065623325174509e-18)
    sum e = 1.1963627514837252
    sum de = 2.881267273380228e-17
Info: cfl dt = 0.002679271452959413 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5778e+04    |       13440 |   2.043e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.330734958072725 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.8988362888933897, dt = 0.001163711106610732 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.19 us    (2.1%)
   patch tree reduce : 1924.00 ns (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 324.28 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (72.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8662946428571425
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.566834210173323e-18,-2.6128877071411015e-19)
    sum a = (-5.711517977145569e-18,-4.155225159211944e-17,-3.212968439240739e-17)
    sum e = 1.196361894082248
    sum de = 8.809142651444724e-18
Info: cfl dt = 0.0026774289680882575 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.7059e+04    |       13440 |   2.004e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 20.902710041729254 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 396                                                     [SPH][rank=0]
Info: time since start : 943.8566450830001 (s)                                        [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1978.40 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1972.44 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1884.86 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.9000000000000005, dt = 0.0026774289680882575 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.46 us   (1.5%)
   patch tree reduce : 1232.00 ns (0.2%)
   gen split merge   : 491.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1103.00 ns (0.2%)
   LB compute        : 654.69 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.40 us    (75.7%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.875372023809524
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.1068461851683107e-18,-3.57419080627267e-19)
    sum a = (6.938152710492268e-18,2.2922736579416443e-17,-6.330345617035125e-17)
    sum e = 1.1963627567370607
    sum de = -4.607859233063394e-19
Info: cfl dt = 0.0026724917961993794 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.4528e+04    |       13440 |   2.083e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.27768348808214 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9026774289680887, dt = 0.0026724917961993794 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.57 us    (1.7%)
   patch tree reduce : 1262.00 ns (0.3%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 367.87 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (72.4%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8764136904761906
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.2362178172009705e-18,-5.459363083230061e-19)
    sum a = (5.558188635477232e-17,-1.548626350850208e-17,-1.922845775359494e-17)
    sum e = 1.1963627775958625
    sum de = 1.1899118843028411e-17
Info: cfl dt = 0.002690012424196243 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5604e+04    |       13440 |   2.049e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.96262868557709 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.905349920764288, dt = 0.002690012424196243 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.79 us    (1.6%)
   patch tree reduce : 1332.00 ns (0.3%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 405.38 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.22 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (72.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.876190476190476
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,6.133173666733497e-19,-5.540220353250473e-19)
    sum a = (5.017702706096342e-17,8.433113791758558e-19,-2.2136923703366215e-18)
    sum e = 1.196362801051843
    sum de = 4.065758146820642e-18
Info: cfl dt = 0.002661362262510714 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5712e+04    |       13440 |   2.045e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.34809862157812 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9080399331884842, dt = 0.002661362262510714 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.89 us    (2.0%)
   patch tree reduce : 1212.00 ns (0.3%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 328.89 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (73.4%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8752232142857141
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,5.654019474019942e-19,-5.288664402075857e-19)
    sum a = (9.77474553135651e-18,-7.666467083416871e-19,4.179662023040335e-17)
    sum e = 1.196362786636031
    sum de = 3.531788576871531e-17
Info: cfl dt = 0.0026376198841104865 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5913e+04    |       13440 |   2.039e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.98717368777562 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9107012954509949, dt = 0.0026376198841104865 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.60 us    (1.8%)
   patch tree reduce : 1252.00 ns (0.3%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 344.19 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.08 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.11 us    (70.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.867708333333333
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,6.756074117261118e-19,-3.584672304238279e-19)
    sum a = (-3.1164188694089583e-17,1.602291620434126e-17,2.3040728299372155e-17)
    sum e = 1.1963627761310685
    sum de = -5.421010862427522e-18
Info: cfl dt = 0.0026185861005048917 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5637e+04    |       13440 |   2.048e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.37258813761139 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9133389153351054, dt = 0.0026185861005048917 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.6%)
   patch tree reduce : 1382.00 ns (0.3%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 375.29 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.17 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (72.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8680803571428566
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,2.922840575552682e-19,-3.1803859541362175e-19)
    sum a = (4.289388333171739e-17,-1.1653029966793643e-17,4.442178626373274e-17)
    sum e = 1.1963627710866263
    sum de = -7.589415207398531e-19
Info: cfl dt = 0.002688135406859336 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5981e+04    |       13440 |   2.037e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.27946950475688 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9159575014356103, dt = 0.002688135406859336 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.71 us    (1.7%)
   patch tree reduce : 21.71 us   (5.5%)
   gen split merge   : 862.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 355.85 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (73.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8683035714285712
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.0062238046984643e-19,-1.671050247088521e-19)
    sum a = (2.2232754541908927e-18,-4.408218572964701e-18,3.289034167334016e-17)
    sum e = 1.1963628367241945
    sum de = -2.4557179206796675e-17
Info: cfl dt = 0.0026834724350656724 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5863e+04    |       13440 |   2.041e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.42374246499012 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9186456368424696, dt = 0.0013543631575309023 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.29 us    (1.7%)
   patch tree reduce : 1162.00 ns (0.3%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 349.28 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (64.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8683035714285712
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,3.6894872838943693e-19,-1.4374625781406633e-19)
    sum a = (-1.391463775640162e-17,2.1236113821064733e-17,4.910012801283971e-17)
    sum e = 1.196362059021505
    sum de = -7.37257477290143e-18
Info: cfl dt = 0.0026734000504262875 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6584e+04    |       13440 |   2.018e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 24.155214510070213 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 404                                                     [SPH][rank=0]
Info: time since start : 952.820936669 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1980.99 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1988.40 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1959.28 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.9200000000000005, dt = 0.0026734000504262875 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.61 us    (1.6%)
   patch tree reduce : 1323.00 ns (0.2%)
   gen split merge   : 621.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1183.00 ns (0.2%)
   LB compute        : 587.86 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.82 us    (69.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8751488095238091
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,7.378974567788739e-19,-1.0930705021277961e-20)
    sum a = (1.410629943348704e-17,2.175360034919537e-17,-4.0081248220488827e-17)
    sum e = 1.1963628289403836
    sum de = -6.342582709040201e-18
Info: cfl dt = 0.0026820437151950692 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.2374e+04    |       13440 |   2.155e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 44.665664756596435 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9226734000504268, dt = 0.0026820437151950692 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.16 us    (1.9%)
   patch tree reduce : 1643.00 ns (0.4%)
   gen split merge   : 701.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1183.00 ns (0.3%)
   LB compute        : 359.01 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (70.3%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8805059523809522
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,3.8811489609797907e-19,-2.2026119296301206e-19)
    sum a = (-5.746017079020945e-17,-1.2917997035557428e-17,-2.9700372635349674e-17)
    sum e = 1.1963628575430487
    sum de = -7.589415207398531e-18
Info: cfl dt = 0.0026714684851299403 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6425e+04    |       13440 |   2.023e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.720067388136975 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9253554437656218, dt = 0.0026714684851299403 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.38 us    (1.8%)
   patch tree reduce : 1162.00 ns (0.3%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1051.00 ns (0.3%)
   LB compute        : 338.45 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (71.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8798363095238089
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.1020546432411752e-18,-2.954285069449509e-19)
    sum a = (3.11258563586725e-17,4.082393721919484e-18,-1.6296034094187985e-17)
    sum e = 1.1963628628109477
    sum de = 5.4752209710517974e-18
Info: cfl dt = 0.0026643591326739016 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.1343e+04    |       13440 |   2.191e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 43.895600168720705 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9280269122507517, dt = 0.0026643591326739016 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.63 us    (1.7%)
   patch tree reduce : 1613.00 ns (0.4%)
   gen split merge   : 1093.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 365.48 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.03 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (73.4%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.87641369047619
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,7.762297921959581e-19,-3.111507538933644e-19)
    sum a = (-2.437936532526565e-17,1.2189682662632825e-17,1.760412504029599e-17)
    sum e = 1.1963628727276086
    sum de = -8.185726402265558e-18
Info: cfl dt = 0.0026527935255396496 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5559e+04    |       13440 |   2.050e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.78712188904295 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9306912713834257, dt = 0.0026527935255396496 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.49 us    (1.8%)
   patch tree reduce : 1373.00 ns (0.4%)
   gen split merge   : 791.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 346.29 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (68.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.863392857142857
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,6.324835343818918e-19,-2.1517017966543053e-19)
    sum a = (-8.433113791758558e-19,-4.389052405256158e-18,1.5821671443401566e-17)
    sum e = 1.1963628846262482
    sum de = 3.957337929572091e-18
Info: cfl dt = 0.002646290398202997 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5705e+04    |       13440 |   2.046e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.68784254253743 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9333440649089653, dt = 0.002646290398202997 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.63 us    (1.8%)
   patch tree reduce : 1623.00 ns (0.4%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1113.00 ns (0.3%)
   LB compute        : 340.56 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (73.8%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8625744047619046
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,8.864352565200757e-19,-1.8687013515828623e-19)
    sum a = (2.2501080889828518e-17,-2.577849556798923e-17,-1.0671243025923571e-16)
    sum e = 1.1963629095508994
    sum de = -8.131516293641283e-19
Info: cfl dt = 0.0026445962409340222 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5786e+04    |       13440 |   2.043e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.630597738312694 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9359903553071682, dt = 0.0026445962409340222 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.40 us    (1.6%)
   patch tree reduce : 1523.00 ns (0.4%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 374.34 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.09 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (71.8%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.862425595238095
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,7.666467083416871e-19,-6.264941069729724e-19)
    sum a = (2.5912658741949025e-17,-3.564907193788845e-18,2.971235149016751e-17)
    sum e = 1.19636295066177
    sum de = 7.589415207398531e-18
Info: cfl dt = 0.002647358734901035 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6338e+04    |       13440 |   2.026e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.99243755591652 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9386349515481023, dt = 0.0013650484518982209 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.18 us    (1.9%)
   patch tree reduce : 1223.00 ns (0.3%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 348.77 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.11 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (72.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.862202380952381
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,5.845681151105364e-19,-4.1087472025187294e-19)
    sum a = (-3.5495742596220113e-17,2.4091872809637516e-17,8.297034001027909e-17)
    sum e = 1.1963622045699864
    sum de = 6.7220534694101275e-18
Info: cfl dt = 0.002704078617309844 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6971e+04    |       13440 |   2.007e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 24.486986086452173 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 412                                                     [SPH][rank=0]
Info: time since start : 961.650367335 (s)                                            [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1996.49 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 2.02 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1905.41 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.9400000000000005, dt = 0.002704078617309844 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.43 us   (1.7%)
   patch tree reduce : 1293.00 ns (0.2%)
   gen split merge   : 481.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1031.00 ns (0.2%)
   LB compute        : 588.06 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.63 us    (76.2%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.865029761904762
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,5.031119023492321e-19,-1.2128590503061847e-19)
    sum a = (2.4436863828391275e-17,4.4427176748400765e-17,1.7769433236782167e-17)
    sum e = 1.1963630590058265
    sum de = -1.680513367352532e-17
Info: cfl dt = 0.0026938680248935107 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5520e+04    |       13440 |   2.051e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.45657120346908 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9427040786173103, dt = 0.0026938680248935107 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.9%)
   patch tree reduce : 1152.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 328.44 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 2.88 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.60 us    (72.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8765625
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,7.953959599045004e-19,-1.7848493678579904e-19)
    sum a = (4.4532590670797747e-17,-7.768047772272144e-17,-5.355745989055755e-18)
    sum e = 1.196363142606634
    sum de = 1.919037845299343e-17
Info: cfl dt = 0.002696934139996877 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6315e+04    |       13440 |   2.027e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.85135224768141 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9453979466422038, dt = 0.002696934139996877 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.42 us    (1.8%)
   patch tree reduce : 1373.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1193.00 ns (0.3%)
   LB compute        : 346.73 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.16 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.81 us    (70.4%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8811011904761903
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,8.433113791758558e-19,-2.0304158916236868e-19)
    sum a = (8.217494405037459e-18,-3.7565688708742666e-17,-7.77361793976244e-17)
    sum e = 1.196363224772162
    sum de = 1.3227266504323154e-17
Info: cfl dt = 0.0027237860091621933 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6937e+04    |       13440 |   2.008e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.355136901708825 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9480948807822006, dt = 0.0027237860091621933 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.51 us    (1.7%)
   patch tree reduce : 1202.00 ns (0.3%)
   gen split merge   : 792.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 364.46 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.12 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (71.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8779761904761902
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,9.822660950627866e-19,-5.309627398007075e-19)
    sum a = (2.1456524749712968e-17,1.7000390757476912e-17,2.972193457402178e-17)
    sum e = 1.1963633276441825
    sum de = 2.5370330836160804e-17
Info: cfl dt = 0.0027023577248525186 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6729e+04    |       13440 |   2.014e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.68427409747309 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9508186667913628, dt = 0.0027023577248525186 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.52 us    (1.7%)
   patch tree reduce : 1203.00 ns (0.3%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.3%)
   LB compute        : 353.67 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (74.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8695684523809522
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,5.414442377663165e-19,-3.1893700952495967e-19)
    sum a = (1.3952970091818706e-17,5.264946269536536e-17,-3.7354860863948704e-17)
    sum e = 1.1963633767534319
    sum de = -2.2768245622195593e-17
Info: cfl dt = 0.0026839824458101077 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.7062e+04    |       13440 |   2.004e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.54231663589846 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9535210245162153, dt = 0.0026839824458101077 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.31 us    (1.5%)
   patch tree reduce : 1202.00 ns (0.3%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 386.68 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 3.36 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (70.7%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8676339285714283
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,1.2170516494924282e-18,-4.911330475313933e-19)
    sum a = (3.493992373267239e-17,1.8802010522079876e-17,9.34350675791431e-18)
    sum e = 1.1963634134660481
    sum de = -1.3227266504323154e-17
Info: cfl dt = 0.00272634112809119 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6455e+04    |       13440 |   2.022e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.7760063035053 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.9562050069620255, dt = 0.00272634112809119 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.60 us    (1.8%)
   patch tree reduce : 1282.00 ns (0.3%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 348.17 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (72.4%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.866443452380952
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.145178520585395e-18,-4.0293872893505466e-19)
    sum a = (1.6176245546009598e-17,2.595099107736611e-17,1.886430056713264e-17)
    sum e = 1.1963634993538375
    sum de = 1.8431436932253575e-18
Info: cfl dt = 0.002698846498978273 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6433e+04    |       13440 |   2.023e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.51403150033081 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9589313480901167, dt = 0.001068651909883811 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.81 us    (1.8%)
   patch tree reduce : 1323.00 ns (0.4%)
   gen split merge   : 852.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 347.98 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.30 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 us    (70.8%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.865252976190476
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,5.510273216205876e-19,-3.966498301556893e-19)
    sum a = (-3.6454050981647224e-17,-4.9046223166159433e-17,-7.761339613574154e-17)
    sum e = 1.1963623123558285
    sum de = -5.4969050145015075e-17
Info: cfl dt = 0.0026888614622544017 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6805e+04    |       13440 |   2.012e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 19.122626718039132 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 420                                                     [SPH][rank=0]
Info: time since start : 970.4519335650001 (s)                                        [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 2.02 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 2.02 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1921.00 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.9600000000000005, dt = 0.0026888614622544017 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.65 us    (1.5%)
   patch tree reduce : 1162.00 ns (0.2%)
   gen split merge   : 511.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.2%)
   LB compute        : 626.28 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.71 us    (68.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8627232142857142
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,5.749850312562653e-19,-6.377242833646963e-19)
    sum a = (-4.427384740673243e-18,3.520825008059198e-17,-1.4470456619949343e-17)
    sum e = 1.196363479746648
    sum de = -7.37257477290143e-18
Info: cfl dt = 0.0026639390249552732 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5956e+04    |       13440 |   2.038e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.503879109736445 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.962688861462255, dt = 0.0026639390249552732 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.31 us    (1.7%)
   patch tree reduce : 1543.00 ns (0.4%)
   gen split merge   : 801.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 347.83 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.33 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (68.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8644345238095237
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,7.091482052160606e-19,-5.844183794253135e-19)
    sum a = (-5.772849713812903e-17,-5.632936689540546e-17,1.7441212614773382e-17)
    sum e = 1.1963634891763484
    sum de = -3.577867169202165e-18
Info: cfl dt = 0.002641387816701775 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.7161e+04    |       13440 |   2.001e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.92291426918886 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9653528004872103, dt = 0.002641387816701775 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.96 us    (1.9%)
   patch tree reduce : 1603.00 ns (0.4%)
   gen split merge   : 851.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1423.00 ns (0.4%)
   LB compute        : 351.14 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.34 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.22 us    (73.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8746279761904763
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,6.468581601632985e-19,-5.034113737196782e-19)
    sum a = (-1.0234733556361523e-17,1.7939532975195477e-17,-2.8998411743024315e-17)
    sum e = 1.196363483825831
    sum de = -7.589415207398531e-18
Info: cfl dt = 0.002620897912251549 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6782e+04    |       13440 |   2.013e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.24918403511182 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.967994188303912, dt = 0.002620897912251549 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.90 us    (1.8%)
   patch tree reduce : 1342.00 ns (0.3%)
   gen split merge   : 811.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1473.00 ns (0.4%)
   LB compute        : 369.54 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.65 us    (73.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8743303571428571
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229109,4.863415056042578e-19,-6.293390849922092e-19)
    sum a = (7.398140735497281e-18,-1.3627145240773488e-17,-2.1351110827315987e-17)
    sum e = 1.1963634777965197
    sum de = -1.5504091066542713e-17
Info: cfl dt = 0.00260252104641037 cfl multiplier : 0.9999999999999997         [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6756e+04    |       13440 |   2.013e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.864148185849466 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9706150862161635, dt = 0.00260252104641037 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.34 us    (1.6%)
   patch tree reduce : 1423.00 ns (0.4%)
   gen split merge   : 812.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 371.20 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (69.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8633184523809527
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,6.348793053454596e-19,-6.72612698021652e-19)
    sum a = (3.863899410042103e-17,-3.018671414095393e-17,5.161928118103122e-17)
    sum e = 1.1963634701929435
    sum de = 1.3118846287074604e-17
Info: cfl dt = 0.002586307716599019 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6394e+04    |       13440 |   2.024e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.28368009376868 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9732176072625739, dt = 0.002586307716599019 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.92 us    (2.0%)
   patch tree reduce : 1353.00 ns (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 329.98 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (69.4%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8650297619047616
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,1.0014322627713287e-18,-4.435170996304839e-19)
    sum a = (7.187312890703317e-18,-3.141334887430063e-17,-8.984141113379146e-18)
    sum e = 1.1963634598140453
    sum de = 7.37257477290143e-18
Info: cfl dt = 0.0026645612895075783 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6745e+04    |       13440 |   2.014e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.23806169005786 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.975803914979173, dt = 0.0026645612895075783 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.65 us    (1.8%)
   patch tree reduce : 1483.00 ns (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 348.73 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (71.6%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8678571428571429
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,4.959245894585289e-19,-5.603109341044127e-19)
    sum a = (-1.4508788955366427e-17,1.3358818892853898e-17,4.959964625874359e-17)
    sum e = 1.1963635381282587
    sum de = 1.1058862159352145e-17
Info: cfl dt = 0.002651834244125465 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6120e+04    |       13440 |   2.033e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.19103079050352 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9784684762686805, dt = 0.0015315237313200392 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 1
    min = 13440
    max = 13440
    avg = 13440
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.10 us    (1.9%)
   patch tree reduce : 1492.00 ns (0.4%)
   gen split merge   : 841.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1603.00 ns (0.4%)
   LB compute        : 351.43 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 2.87 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (71.4%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.867857142857143
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,8.552902339936947e-19,-4.005429579714869e-19)
    sum a = (5.3281946229747256e-18,6.7848233688239304e-18,-1.2987474393500893e-17)
    sum e = 1.1963626316891576
    sum de = 3.903127820947816e-18
Info: cfl dt = 0.0026474668242804757 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6493e+04    |       13440 |   2.021e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 27.277306954471758 (tsim/hr)                            [sph::Model][rank=0]
Info: iteration since start : 428                                                     [SPH][rank=0]
Info: time since start : 979.3038855670001 (s)                                        [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1994.44 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1947.24 ms                                  [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1876.32 ms                                  [sph::CartesianRender][rank=0]
---------------- t = 0.9800000000000005, dt = 0.0026474668242804757 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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    (1.4%)
   patch tree reduce : 1533.00 ns (0.2%)
   gen split merge   : 591.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.1%)
   LB compute        : 675.00 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.81 us    (74.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8683035714285714
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229106,6.396708472725952e-19,-4.909833118461703e-19)
    sum a = (-2.6832634791959047e-18,-6.658326661947552e-17,-1.9190125418177855e-17)
    sum e = 1.1963634951585025
    sum de = 7.589415207398531e-18
Info: cfl dt = 0.002639500055451074 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.5450e+04    |       13440 |   2.053e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.413165119300935 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9826474668242811, dt = 0.002639500055451074 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.58 us    (1.8%)
   patch tree reduce : 1273.00 ns (0.3%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.3%)
   LB compute        : 352.41 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.67 us    (67.0%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.86875
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,7.426889987060094e-20,-5.722897889222516e-19)
    sum a = (-1.6617067403306068e-17,-2.2961068914833527e-17,1.7014765383258318e-17)
    sum e = 1.1963634732559174
    sum de = -3.968179951296946e-17
Info: cfl dt = 0.002636727297186456 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6918e+04    |       13440 |   2.008e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 47.3118448624408 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.9852869668797322, dt = 0.002636727297186456 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.61 us    (1.8%)
   patch tree reduce : 1804.00 ns (0.5%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 344.05 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (71.1%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8787946428571427
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.0807924740222911,1.3655894492336302e-19,-4.402229145555781e-19)
    sum a = (-5.0004531551586544e-17,3.5189083912883436e-17,-3.476742822329551e-17)
    sum e = 1.1963634471097342
    sum de = -2.168404344971009e-18
Info: cfl dt = 0.0027230076286749966 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6178e+04    |       13440 |   2.031e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 46.73961882684315 (tsim/hr)                             [sph::Model][rank=0]
---------------- t = 0.9879236941769186, dt = 0.0027230076286749966 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.6%)
   patch tree reduce : 1332.00 ns (0.3%)
   gen split merge   : 842.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 361.82 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.14 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (72.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8786458333333336
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,3.0905445430024263e-19,-6.461094817371836e-19)
    sum a = (1.3837973085567452e-17,-4.3890524052561586e-17,-1.8629515012702998e-17)
    sum e = 1.1963635026931307
    sum de = -2.3635607360183997e-17
Info: cfl dt = 0.0027125048451089274 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6824e+04    |       13440 |   2.011e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.7401172090928 (tsim/hr)                              [sph::Model][rank=0]
---------------- t = 0.9906467018055936, dt = 0.0027125048451089274 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.60 us    (1.9%)
   patch tree reduce : 1223.00 ns (0.3%)
   gen split merge   : 781.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1133.00 ns (0.3%)
   LB compute        : 333.47 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.01 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (68.5%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8674107142857141
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,8.217494405037459e-19,-6.613825216299281e-19)
    sum a = (1.3147991048059934e-17,2.5644332394029432e-17,4.2750137073903325e-17)
    sum e = 1.196363467682703
    sum de = -4.87890977618477e-18
Info: cfl dt = 0.0027435418678441797 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.7227e+04    |       13440 |   1.999e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 48.844835911792366 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9933592066507024, dt = 0.0027435418678441797 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.8%)
   patch tree reduce : 1232.00 ns (0.4%)
   gen split merge   : 832.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 326.49 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.24 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (67.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.862276785714286
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229105,6.588370149811373e-19,-4.583409324675594e-19)
    sum a = (3.070420066908457e-17,-2.8864248569064516e-17,-8.049790437587714e-18)
    sum e = 1.1963634733433652
    sum de = 2.1358782797964437e-17
Info: cfl dt = 0.002736105258684531 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.7092e+04    |       13440 |   2.003e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 49.304041066281115 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9961027485185466, dt = 0.002736105258684531 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.9%)
   patch tree reduce : 1332.00 ns (0.4%)
   gen split merge   : 822.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 324.21 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.23 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (71.9%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8620535714285715
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,3.186375381545137e-19,-5.486315506570198e-19)
    sum a = (4.199307344941591e-17,5.3588604913083926e-17,-2.2520247057537058e-18)
    sum e = 1.1963634491640411
    sum de = -3.469446951953614e-18
Info: cfl dt = 0.002732950173649477 cfl multiplier : 0.9999999999999997        [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.7016e+04    |       13440 |   2.006e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 49.114712794267994 (tsim/hr)                            [sph::Model][rank=0]
---------------- t = 0.9988388537772311, dt = 0.0011611462227693048 ----------------
Info: summary :                                                               [LoadBalance][rank=0]
Info:  - strategy "psweep" : max = 13440 min = 13440                          [LoadBalance][rank=0]
Info:  - strategy "round robin" : max = 13440 min = 13440                     [LoadBalance][rank=0]
Info: Loadbalance 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.20 us    (1.7%)
   patch tree reduce : 1453.00 ns (0.4%)
   gen split merge   : 821.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1153.00 ns (0.3%)
   LB compute        : 338.86 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 2.94 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (71.7%)
Warning: the unit system is not set                                           [sph::Config][rank=0]
Warning: High interface/patch volume ratio.                                  [InterfaceGen][rank=0]
    This can lead to high mpi overhead, try to increase the patch split crit
    patch 0 high interf/patch volume: 1.8619047619047622
Info: conservation infos :                                                     [sph::Model][rank=0]
    sum v = (-0.08079247402229107,8.528944630301269e-19,-5.402463522845326e-19)
    sum a = (1.611874704288397e-17,-5.481523964643063e-18,2.5596416974758078e-17)
    sum e = 1.196362468603958
    sum de = 3.9898639947466563e-17
Info: cfl dt = 0.0027336530435572376 cfl multiplier : 0.9999999999999997       [sph::Model][rank=0]
Info: processing rate infos :                                                  [sph::Model][rank=0]
---------------------------------------------------------------------------------------
| rank |  rate  (N.s^-1)  |     Nobj    | t compute (s) |  MPI   | alloc |  mem (max) |
---------------------------------------------------------------------------------------
| 0    |    6.6876e+04    |       13440 |   2.010e-01   |    0 % |   0 % |    1.16 GB |
---------------------------------------------------------------------------------------
Info: estimated rate : 20.79998079876237 (tsim/hr)                             [sph::Model][rank=0]
Info: iteration since start : 436                                                     [SPH][rank=0]
Info: time since start : 988.2199964240001 (s)                                        [SPH][rank=0]
Info: compute_slice field_name: rho, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 2.01 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: alpha_AV, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 2.01 s                                      [sph::CartesianRender][rank=0]
Info: compute_slice field_name: vxyz, center: (0,0,0), delta_x: (1,0,0), delta_y: (0,1,0), nx: 1080, ny: 1080  [sph::CartesianRender][rank=0]
Info: compute_slice took 1919.77 ms                                  [sph::CartesianRender][rank=0]

Convert PNG sequence to Image sequence in mpl#

280 import matplotlib.animation as animation
281
282
283 def show_image_sequence(glob_str):
284
285     if render_gif and shamrock.sys.world_rank() == 0:
286
287         import glob
288
289         files = sorted(glob.glob(glob_str))
290
291         from PIL import Image
292
293         image_array = []
294         for my_file in files:
295             image = Image.open(my_file)
296             image_array.append(image)
297
298         if not image_array:
299             raise RuntimeError(f"Warning: No images found for glob pattern: {glob_str}")
300
301         pixel_x, pixel_y = image_array[0].size
302
303         # Create the figure and axes objects
304         # Remove axes, ticks, and frame & set aspect ratio
305         dpi = 200
306         fig = plt.figure(dpi=dpi)
307         plt.gca().set_position((0, 0, 1, 1))
308         plt.gcf().set_size_inches(pixel_x / dpi, pixel_y / dpi)
309         plt.axis("off")
310
311         # Set the initial image with correct aspect ratio
312         im = plt.imshow(image_array[0], animated=True, aspect="auto")
313
314         def update(i):
315             im.set_array(image_array[i])
316             return (im,)
317
318         # Create the animation object
319         ani = animation.FuncAnimation(
320             fig,
321             update,
322             frames=len(image_array),
323             interval=50,
324             blit=True,
325             repeat_delay=10,
326         )
327
328         return ani
329
330
331 # If the animation is not returned only a static image will be shown in the doc

Rho plot

335 glob_str = os.path.join(dump_folder, f"{sim_name}_rho_*.png")
336 ani = show_image_sequence(glob_str)
337
338 if render_gif and shamrock.sys.world_rank() == 0:
339     # Show the animation
340     plt.show()

Vy plot

344 glob_str = os.path.join(dump_folder, f"{sim_name}_vy_*.png")
345 ani = show_image_sequence(glob_str)
346
347 if render_gif and shamrock.sys.world_rank() == 0:
348     # Show the animation
349     plt.show()

alpha plot

353 glob_str = os.path.join(dump_folder, f"{sim_name}_alpha_*.png")
354 ani = show_image_sequence(glob_str)
355
356 if render_gif and shamrock.sys.world_rank() == 0:
357     # Show the animation
358     plt.show()

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

Estimated memory usage: 597 MB

Gallery generated by Sphinx-Gallery